-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
67 lines (66 loc) · 1.89 KB
/
Copy pathrender.yaml
File metadata and controls
67 lines (66 loc) · 1.89 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
services:
- type: web
name: ai-code-modernization-api
runtime: docker
plan: free
region: singapore
autoDeployTrigger: checksPass
healthCheckPath: /healthz
dockerfilePath: ./agent_service/Dockerfile
dockerContext: ./agent_service
envVars:
- key: SERVICE_HOST
value: "0.0.0.0"
- key: AGENT_SERVICE_PORT
value: "10000"
- key: MODEL_TYPE
value: "OpenAI"
- key: OPENAI_MODEL_ID
value: "gateway-managed"
- key: LLM_GATEWAY_URL
value: "https://portfolio-llm-gateway.onrender.com/v1"
- key: LLM_GATEWAY_TIMEOUT
value: "180"
- key: LLM_GATEWAY_REQUIRED
value: "true"
- key: QDRANT_URL
sync: false
- key: QDRANT_API_KEY
sync: false
- key: QDRANT_CLOUD_INFERENCE
value: "true"
- key: QDRANT_COLLECTION_PREFIX
value: "legacylens"
- key: QDRANT_DENSE_MODEL
value: "sentence-transformers/all-MiniLM-L6-v2"
- key: QDRANT_SPARSE_MODEL
value: "qdrant/bm25"
- key: QDRANT_DENSE_DIMENSIONS
value: "384"
- key: DATABASE_URL
sync: false
- key: ALLOWED_ORIGINS
value: "https://ai-code-modernization-ui.onrender.com"
- key: STACK_ANALYZER_ENABLED
value: "true"
- key: STACK_ANALYZER_VERSION
value: "1.27.6"
- key: OTEL_ENABLED
value: "false"
- key: PUBLIC_API_URL
value: "https://ai-code-modernization-api.onrender.com"
- type: web
name: ai-code-modernization-ui
runtime: docker
plan: free
region: singapore
autoDeployTrigger: checksPass
healthCheckPath: /_stcore/health
dockerfilePath: ./streamlit_ui/Dockerfile
dockerContext: ./streamlit_ui
envVars:
- key: AGENT_SERVICE_URL
fromService:
type: web
name: ai-code-modernization-api
envVarKey: PUBLIC_API_URL