Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ekimetrics
/
climate-question-answering
like
137
Running
App
Files
Files
Community
17
0b431ab
climate-question-answering
/
climateqa
/
engine
/
llm
/
ollama.py
TheoLvs
feature/add_agents (
#14
)
48e003d
verified
2 months ago
raw
Copy download link
history
blame
Safe
126 Bytes
from
langchain_community.llms
import
Ollama
def
get_llm
(
model=
"llama3"
, **kwargs
):
return
Ollama(model=model, **kwargs)