TheoLvs's picture
feature/add_agents (#14)
48e003d verified
raw
history blame
126 Bytes
from langchain_community.llms import Ollama
def get_llm(model="llama3", **kwargs):
return Ollama(model=model, **kwargs)