Spaces:
Sleeping
Sleeping
File size: 1,015 Bytes
149f66c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
o install langchain-community run `pip install -U langchain-community`.
from langchain.llms import LiteLLM
Traceback (most recent call last):
File "/home/user/app/app.py", line 12, in <module>
from langchain.llms import LiteLLM
ImportError: cannot import name 'LiteLLM' from 'langchain.llms' (/usr/local/lib/python3.10/site-packages/langchain/llms/__init__.py)
/home/user/app/app.py:12: LangChainDeprecationWarning: Importing LLMs from langchain is deprecated. Importing from langchain will no longer be supported as of langchain==0.2.0. Please import from langchain-community instead:
`from langchain_community.llms import LiteLLM`.
To install langchain-community run `pip install -U langchain-community`.
from langchain.llms import LiteLLM
Traceback (most recent call last):
File "/home/user/app/app.py", line 12, in <module>
from langchain.llms import LiteLLM
ImportError: cannot import name 'LiteLLM' from 'langchain.llms' (/usr/local/lib/python3.10/site-packages/langchain/llms/__init__.py)
|