Skip to content

Commit 34f9bdd

Browse files
Update README.md
1 parent f2e7a79 commit 34f9bdd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ That way, 90% of the logic stays deterministic, and the model only steps in when
9191
```python
9292
from litai import LLM
9393

94-
llm = LLM(model="openai/gpt-4o")
94+
llm = LLM(model="openai/gpt-3.5-turbo")
9595

96-
product_review = "give me a short, bad product review about a tv"
96+
product_review = "This TV has terrible picture quality and the sound cuts out constantly."
9797
response = llm.chat(f"Is this review good or bad? Reply only with 'good' or 'bad': {product_review}").strip().lower()
9898

9999
if response == "good":

0 commit comments

Comments
 (0)