ollama/examples/with-langchain-python-simplegenerate/main.py
Matt Williams cdf5e106ae rename dirs
Signed-off-by: Matt Williams <m@technovangelist.com>
2023-10-11 06:10:24 -07:00

4 lines
102 B
Python

from langchain.llms import Ollama
llm = Ollama(model="llama2")
res = llm.predict("hello")
print (res)