Echo-ai commited on
Commit
e00b411
·
verified ·
1 Parent(s): 21ed284

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ from langchain_community.llms import Ollama
3
+
4
+ app = FastAPI()
5
+
6
+ # Initialize the Ollama model
7
+ llm = Ollama(model="tinyllama")
8
+
9
+ @app.get("/")
10
+ async def root():
11
+ return {"message": "Ollama is running on Hugging Face Spaces!"}
12
+
13
+ @app.get("/chat")
14
+ async def chat(query: str):
15
+ response = llm.invoke(query)
16
+ return {"response": response}