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
d396732
climate-question-answering
/
climateqa
/
engine
/
llm
/
ollama.py
TheoLvs
agents mode
99e91d8
3 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)