First stuff

This commit is contained in:
2023-02-22 19:13:04 +01:00
parent acf320feb0
commit 71eff5cbf4
5 changed files with 166 additions and 1 deletions

25
server.js Normal file
View File

@@ -0,0 +1,25 @@
const { OpenAILLM, SuppresServer, DataGenerator } = require('ai.suppress.js');
const config = require('./config.json');
const server = new SuppresServer();
const llm = new OpenAILLM(config.key);
const prompt = "{introduction}\nBased on the above introduction, list the following information: Name, Age and Location:";
server.createEndpoint(
"/new/person/:introduction",
"GET",
new DataGenerator(prompt, null, llm).set({doFormat: false}));
let prompt1 =
`Predict the capital of a country.
Country: {country}
Capital:`
server.createEndpoint(
"/capital/:country",
"GET",
new DataGenerator(prompt1, null, llm).set({doFormat: false}));
server.start(3042);