Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0316b2c
WIP - POC of making the agent OAI template compatible with databrick …
smurching Jan 12, 2026
2f6a155
Sync agent template updates from CLI
smurching Jan 12, 2026
64d858e
Sync agent template updates from CLI
smurching Jan 13, 2026
8ebf14a
Sync agent template updates from CLI
smurching Jan 13, 2026
0472cd8
Sync agent template updates from CLI
smurching Jan 13, 2026
3e20cea
WIP syncing changes back
smurching Jan 13, 2026
680d832
WIP, trying to automate self-improving the template
smurching Jan 14, 2026
db33dc4
Revert "WIP, trying to automate self-improving the template"
smurching Jan 14, 2026
4860cc1
Convert template to copyable code sample
smurching Jan 14, 2026
6b707d5
Enhance AGENTS.md with detailed setup and workflow guidance
smurching Jan 14, 2026
1c13c88
Fix start-app to properly pass through CLI arguments
smurching Jan 14, 2026
05d53fe
Refactor start-app to use pass-through for all backend options
smurching Jan 14, 2026
c81cedf
Updates
smurching Jan 16, 2026
e6770ef
Add non-interactive mode support to quickstart script
smurching Jan 16, 2026
7dc982f
Fix quickstart to specify profile name when creating new auth config
smurching Jan 16, 2026
d5f961d
Add comprehensive app resources section to AGENTS.md
smurching Jan 16, 2026
ed22644
Document how to set Databricks profile for MLflow tracking URI
smurching Jan 18, 2026
b597371
Updates to address comments
smurching Jan 18, 2026
425e2fa
Remove discovery of mcp- packages
smurching Jan 18, 2026
66f60fa
fix docstring
smurching Jan 19, 2026
e287fff
Sync changes to discover_tools from other folder
smurching Jan 19, 2026
54af22a
bump min databricks-openai version
smurching Jan 19, 2026
baa8165
Fix port
smurching Jan 19, 2026
26079b4
Automatically set API_PROXY in start-app so that when you run uv run …
smurching Jan 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions agent-openai-agents-sdk/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ DATABRICKS_CONFIG_PROFILE=DEFAULT
# TODO: Update with the MLflow experiment you want to log traces and models to
MLFLOW_EXPERIMENT_ID=

# TODO: Update the route to query agent if you used a different port to deploy your agent
API_PROXY=http://localhost:8000/invocations

CHAT_APP_PORT=3000
CHAT_PROXY_TIMEOUT_SECONDS=300
# IMPORTANT: For local development, use databricks (for default profile) or databricks://<profile-name> to specify which Databricks CLI profile to use
# This is automatically configured by the quickstart script
MLFLOW_TRACKING_URI="databricks"
MLFLOW_REGISTRY_URI="databricks-uc"
2 changes: 0 additions & 2 deletions agent-openai-agents-sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Created by https://www.toptal.com/developers/gitignore/api/python
# Edit at https://www.toptal.com/developers/gitignore?templates=python

databricks.yml

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
Loading