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>
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"
|
|
``` |