litellm/docs/snippets/get_started/quickstart/input_string.mdx
2023-07-29 07:00:13 -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
```