mirror of
https://github.com/run-llama/mixtral_ollama.git
synced 2026-07-01 21:04:05 -04:00
8 lines
194 B
Python
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)
|