mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
33fd6184ba
Co-authored-by: Bagatur <baskaryan@gmail.com>
9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
```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
|
|
``` |