litellm-mirror/docs/snippets/get_started/quickstart/input_string.mdx
ishaan-jaff a168cf8b9c add v4
2023-07-29 07:12:19 -07:00

9 lines
No EOL
181 B
Text

```python
text = "What would be a good company name for a company that makes colorful socks?"
llm.predict(text)
# >> Feetful of Fun
chat_model.predict(text)
# >> Socks O'Color
```