mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-05 15:18:32 +00:00
13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
```python
|
|
from langchain.llms import OpenAI
|
|
from langchain.chat_models import ChatOpenAI
|
|
|
|
llm = OpenAI()
|
|
chat_model = ChatOpenAI()
|
|
|
|
llm.predict("hi!")
|
|
>>> "Hi"
|
|
|
|
chat_model.predict("hi!")
|
|
>>> "Hi"
|
|
``` |