Skip to content

Commit

Permalink
✅ Fix tests to avoid ambiguous words in LLM generation
Browse files Browse the repository at this point in the history
  • Loading branch information
lowczarc authored Mar 8, 2024
1 parent 2261f0e commit fc3c617
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/generation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ test(

const embeddings = Embeddings();

embeddings.add('The secret is "banana42"');
embeddings.add('The word you have to remember is "banana42"');

const message = await generate("Just answer with the secret", {
const message = await generate("Just answer with the word you have to remember", {
temperature: 0,
cache: false,
embeddings,
Expand Down

0 comments on commit fc3c617

Please sign in to comment.