Created
November 19, 2023 14:50
-
-
Save nyimbi/017942bec8694e985bbf10442a07b1d0 to your computer and use it in GitHub Desktop.
Ollama + Langchain
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain.callbacks.manager import CallbackManager | |
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler | |
from langchain.llms import Ollama | |
llm = Ollama( | |
model="mistral", callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]) | |
) | |
print(llm("Tell me about the history of AI")) |
I keep getting this error and I don't know the main reason, I'm using falcon 7b for this LangChainDeprecationWarning: The function
__call__
was deprecated in LangChain 0.1.7 and will be removed in 0.2.0. Use invoke instead. warn_deprecated(
print(llm.invoke("Tell me about the history of AI"))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I keep getting this error and I don't know the main reason, I'm using falcon 7b for this
LangChainDeprecationWarning: The function
__call__
was deprecated in LangChain 0.1.7 and will be removed in 0.2.0. Use invoke instead.warn_deprecated(