Remove obsolete debugging output

This commit is contained in:
maver
2023-08-08 19:45:51 +02:00
parent cdfe3a6841
commit 46c7e63fad

View File

@ -490,7 +490,6 @@ function populateDialogueExamples(prompts, chatCompletion) {
[...openai_msgs_example].forEach((dialogue, dialogueIndex) => {
dialogue.forEach((prompt, promptIndex) => {
console.log(prompt);
const role = prompt.name === 'example_assistant' ? 'assistant' : 'user';
const content = prompt.content || '';
const identifier = `dialogueExamples ${dialogueIndex}-${promptIndex}`;