Skip to content

Instantly share code, notes, and snippets.

@nyimbi
Created November 19, 2023 14:50
Show Gist options
  • Save nyimbi/017942bec8694e985bbf10442a07b1d0 to your computer and use it in GitHub Desktop.
Save nyimbi/017942bec8694e985bbf10442a07b1d0 to your computer and use it in GitHub Desktop.
Ollama + Langchain
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"))
@sullvs
Copy link

sullvs commented Feb 27, 2024

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(

@vishnusureshperumbavoor

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