1 parent c843377 commit 143ec88Copy full SHA for 143ec88
2 files changed
render.yaml
@@ -0,0 +1,11 @@
1
+services:
2
+ - type: web
3
+ name: lumiclaim-backend
4
+ env: python
5
+ buildCommand: pip install -r requirements.txt
6
+ startCommand: uvicorn backend.main:app --host 0.0.0.0 --port $PORT
7
+ envVars:
8
+ - key: GEMINI_API_KEY
9
+ sync: false
10
+ - key: PYTHONPATH
11
+ value: .
requirements.txt
@@ -16,3 +16,10 @@ ragas==0.2.1
16
datasets==3.2.0
17
langchain-google-genai==2.0.7
18
langchain-community==0.3.16
19
+
20
+# Backend (FastAPI)
21
+fastapi==0.115.6
22
+uvicorn==0.34.0
23
+python-multipart==0.0.20
24
+pypdf2==3.0.1
25
+aiofiles==24.1.0
0 commit comments