-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathapp.yaml.template
More file actions
28 lines (28 loc) · 1.07 KB
/
app.yaml.template
File metadata and controls
28 lines (28 loc) · 1.07 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
command:
- gunicorn
- app:app
env:
- name: HOME
value: /app/python/source_code
- name: DATABRICKS_TOKEN
valueFrom: DATABRICKS_TOKEN
- name: ANTHROPIC_MODEL
value: databricks-claude-opus-4-6
- name: GEMINI_MODEL
value: databricks-gemini-2-5-pro
- name: HERMES_MODEL
value: databricks-claude-opus-4-7
- name: HERMES_FALLBACK_MODEL
value: databricks-claude-opus-4-6
# Set ENABLE_HERMES=false to skip Hermes Agent install.
# Other CLIs are unaffected.
- name: ENABLE_HERMES
value: "true"
#OPTIONAL: Use the new Databricks AI Gateway if you have access (recommended), otherwise it will default to the older endpoint
- name: DATABRICKS_GATEWAY_HOST
value: https://<your-gateway-id>.ai-gateway.<env>.cloud.databricks.com
# NOTE: CLAUDE_CODE_DISABLE_AUTO_MEMORY=0 enables auto memory, allowing Claude Code to
# persist context and history across sessions. This flag is temporary — once Anthropic
# completes the rollout and auto memory is on by default, this can be removed entirely.
- name: CLAUDE_CODE_DISABLE_AUTO_MEMORY
value: 0