-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
17 lines (13 loc) · 826 Bytes
/
Copy pathenv.example
File metadata and controls
17 lines (13 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# env.example generated from labs/deepagents/code_as_agent_harness/governed_agent_runtime.py
# Provide values appropriate to your deployment. These are the environment
# variables referenced directly by the governed_agent_runtime implementation.
# Model used by the DeepAgents runtime. Example: openai:gpt-5.4
DEEPAGENTS_MODEL=openai:gpt-5.4
# Model used by summarization middleware (optional). Example: openai:gpt-5.4-mini
DEEPAGENTS_SUMMARY_MODEL=openai:gpt-5.4-mini
# Notes:
# - This file contains only variables discovered in the single source file
# 'governed_agent_runtime.py'. Your full application may require additional
# variables (DATABASE_URL, LANGFUSE keys, cloud credentials, etc.).
# - Do NOT commit real secrets to version control. Use a secrets manager or CI
# mechanism for production credentials.