File size: 391 Bytes
447450c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | services:
- type: web
name: python-qa-assistant
runtime: docker
plan: free
healthCheckPath: /health
envVars:
- key: GOOGLE_API_KEY
sync: false
- key: VECTORSTORE_PATH
value: ./vectorstore
- key: MODEL_NAME
value: gemini-3.1-flash-lite
- key: TOP_K
value: "6"
- key: COLLECTION_NAME
value: python_qa
|