mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +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
|
|
``` |