e8aaea030e
* Update 'llama2' -> 'llama3' in most places --------- Co-authored-by: Patrick Devine <patrick@infrahq.com>
6 lines
141 B
Python
6 lines
141 B
Python
from langchain.llms import Ollama
|
|
|
|
input = input("What is your question?")
|
|
llm = Ollama(model="llama3")
|
|
res = llm.predict(input)
|
|
print (res)
|