mirror of
https://github.com/wasnertobias/StalkingAId.git
synced 2025-10-16 11:55:43 +00:00
Remove stop word and logging
This commit is contained in:
parent
71272151bb
commit
e5934e28fa
@ -64,7 +64,6 @@ async function getResponse(history, res) {
|
||||
|
||||
// history: {msg: string, ai: boolean}[]
|
||||
const prompt = staticPrefix + '\n' + history.map(hist => hist.msg).join("\n");
|
||||
console.log("prompt: " + prompt);
|
||||
|
||||
try {
|
||||
const response = await openai.createCompletion({
|
||||
@ -74,17 +73,15 @@ async function getResponse(history, res) {
|
||||
max_tokens: 500,
|
||||
top_p: 1,
|
||||
frequency_penalty: 0.5,
|
||||
presence_penalty: 0.6,
|
||||
stop: ["\n"],
|
||||
presence_penalty: 0.6
|
||||
});
|
||||
console.log("got from openai: " + JSON.stringify(response.data));
|
||||
// console.log("got from openai: " + JSON.stringify(response.data));
|
||||
history.push({
|
||||
msg: response.data.choices[0].text,
|
||||
ai: true
|
||||
})
|
||||
res.status(200).json(history).end();
|
||||
} catch(error) {
|
||||
console.error(error);
|
||||
console.error(error.response.status, error.response.data);
|
||||
res.status(error.response.status).json(error.response.data);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user