0be8baad2b
* Update example models * Remove unused README.md
6 lines
143 B
Python
6 lines
143 B
Python
from langchain.llms import Ollama
|
|
|
|
input = input("What is your question?")
|
|
llm = Ollama(model="llama3.1")
|
|
res = llm.predict(input)
|
|
print (res)
|