Skip to content

Commit e7839f8

Browse files
Update README.md
1 parent aacbde4 commit e7839f8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,12 +274,12 @@ from litai import LLM
274274
llm = LLM(model="openai/gpt-4")
275275

276276
# use a cheap model for this question
277-
llm.chat("Is this a number or word: '5'", model="google/gemini-2.5-flash", conversation="help_session")
277+
llm.chat("Is this a number or word: '5'", model="google/gemini-2.5-flash", conversation="story")
278278

279279
# go back to the expensive model
280-
llm.chat("Generate a story about that number like Lord of the Rings", conversation="help_session")
280+
llm.chat("Create a story about that number like Lord of the Rings", conversation="story")
281281

282-
print(llm.get_history("intro")) # View all messages from the 'help_session' thread
282+
print(llm.get_history("story")) # View all messages from the 'story' thread
283283
```
284284

285285
</details>

0 commit comments

Comments
 (0)