Files
2023-12-20 15:40:05 -08:00

8 lines
194 B
Python

# Just runs .complete to make sure the LLM is listening
from llama_index.llms import Ollama
llm = Ollama(model="mixtral")
response = llm.complete("Who is Laurie Voss?")
print(response)