AITools prime cose

This commit is contained in:
Surya Paolo
2024-01-30 14:00:37 +01:00
parent aeabf96efe
commit 0c2a8ecef5
15 changed files with 372 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
module.exports = {
list: [
{
_id: 1,
descr: 'Pubblicare',
},
{
_id: 2,
descr: 'Matematica',
},
],
};

View File

@@ -0,0 +1,65 @@
const { ObjectID } = require('mongodb');
module.exports = {
list: [
{
_id: ObjectID("115a353c002c298f44900010"),
idapp: 18,
ask: [
{ descr: 'Scegli quanti punti', value: 'numpunti' },
],
descr: 'Scrivimi {numpunti} punti per {testo}',
query: 'Scrivimi {numpunti} punti per {testo}',
output_type: 'ELENCO',
},
{
_id: ObjectID("115a353c002c298f44900020"),
idapp: 18,
ask: [
{ descr: 'Numeri di righe', value: 'numrighe', min: 1, max: 100 },
],
descr: 'Riassumi ogni punto dell\'elenco in {numrighe} righe',
query: 'Riassumi ogni punto dell\'elenco in massimo {numrighe} righe',
output_type: 'ELENCO',
},
{
_id: ObjectID("115a353c002c829f44900030"),
idapp: 18,
ask: [],
descr: 'Estrai le cose importanti dell\'articolo',
query: 'Quali sono le cose importanti che sono state dette in questo articolo? {testo}',
output_type: '',
},
{
_id: ObjectID("115a353c002c8298f4900040"),
idapp: 18,
ask: [],
descr: 'Dammi degli Emoji',
query: 'Dammi 10 ideee per degli Emoji che puoi utilizzare per la frase {testo}',
buttons: ['NEXT_10'],
output_type: '',
},
{
_id: ObjectID("115a353c002c298f44900050"),
idapp: 18,
ask: [
{ descr: 'Scegli quanti Punti', value: 'numpunti' },
],
descr: '{numpunti} punti per un webinar su come utilizzare ChatGPT',
query: 'Scrivimi {numpunti} punti per un webinar su come utilizzare ChatGPT nel proprio lavoro',
output_type: 'ELENCO',
},
{
_id: ObjectID("115a353c002c898f44900060"),
idapp: 18,
descr: 'Scaletta punti',
query: 'Mi fai una scaletta di punti che potrei affrontare durante il webinar.',
},
{
_id: ObjectID("115a353c002c829f44900070"),
idapp: 18,
descr: 'Elenchi Puntati',
query: 'Mi trasformi questo testo in elenchi puntati? {testo}',
},
],
};