-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrender.yaml
More file actions
37 lines (37 loc) · 1004 Bytes
/
render.yaml
File metadata and controls
37 lines (37 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
- type: web
name: superag
runtime: python
plan: starter
region: oregon
buildCommand: pip install -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /api/health
envVars:
- key: PYTHON_VERSION
value: "3.11.9"
- key: OPENAI_API_KEY
sync: false
- key: OPENAI_MODEL
value: "gpt-4.1"
- key: PINECONE_API_KEY
sync: false
- key: PINECONE_INDEX_NAME
value: "superag"
- key: PINECONE_ENVIRONMENT
value: "us-east-1"
- key: EMBEDDING_MODEL
value: "text-embedding-3-small"
- key: EMBEDDING_DIMENSION
value: "1536"
- key: CHUNK_SIZE
value: "512"
- key: CHUNK_OVERLAP
value: "128"
# Langfuse (opcional)
- key: LANGFUSE_PUBLIC_KEY
sync: false
- key: LANGFUSE_SECRET_KEY
sync: false
- key: LANGFUSE_HOST
value: "https://cloud.langfuse.com"