"sgl-kernel/csrc/vscode:/vscode.git/clone" did not exist on "f78b7fd16dbfe32c2ee73c1f3fef49fc1257b27f"
main.py 141 Bytes
Newer Older
wangkx1's avatar
init  
wangkx1 committed
1
2
3
4
5
6
from langchain.llms import Ollama

input = input("What is your question?")
llm = Ollama(model="llama3")
res = llm.predict(input)
print (res)