- Aggiornato tutti i pacchetti del server all'ultima versione. - passato mongoose da versione 5 a versione 6
66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
const { ObjectId } = require('mongodb');
|
|
|
|
module.exports = {
|
|
list: [
|
|
{
|
|
_id: new 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: new 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: new 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: new 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: new 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: new ObjectId("115a353c002c898f44900060"),
|
|
idapp: 18,
|
|
descr: 'Scaletta punti',
|
|
query: 'Mi fai una scaletta di punti che potrei affrontare durante il webinar.',
|
|
},
|
|
{
|
|
_id: new ObjectId("115a353c002c829f44900070"),
|
|
idapp: 18,
|
|
descr: 'Elenchi Puntati',
|
|
query: 'Mi trasformi questo testo in elenchi puntati? {testo}',
|
|
},
|
|
],
|
|
};
|