Update and Fix example models (#6065)

* Update example models

* Remove unused README.md
This commit is contained in:
Kim Hallberg
2024-07-30 08:56:37 +02:00
committed by GitHub
parent 1a83581a8e
commit 0be8baad2b
19 changed files with 32 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
from langchain.llms import Ollama
input = input("What is your question?")
llm = Ollama(model="llama3")
llm = Ollama(model="llama3.1")
res = llm.predict(input)
print (res)