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