Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions agent-langgraph-advanced/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies = [
"fastapi>=0.129.0",
"uvicorn>=0.41.0",
"databricks-langchain[memory]>=0.19.0",
"databricks-openai",
"databricks-ai-bridge[agent-server]>=0.19.0",
"databricks-sdk>=0.79.0",
"databricks-agents>=1.9.3",
Expand Down Expand Up @@ -39,6 +40,15 @@ setup = [
[tool.uv]
default-groups = ["dev", "setup"]

# TEMPORARY: pin databricks-ai-bridge and its integrations to the fix branch for
# https://github.com/databricks/databricks-ai-bridge/pull/435 while the fix is
# unreleased. Remove these once a databricks-ai-bridge release containing the
# VectorSearchIndex import fix is published to PyPI.
[tool.uv.sources]
databricks-ai-bridge = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import" }
databricks-openai = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import", subdirectory = "integrations/openai" }
databricks-langchain = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import", subdirectory = "integrations/langchain" }


[tool.pytest.ini_options]
base_url = "http://localhost:8000"
Expand Down
11 changes: 11 additions & 0 deletions agent-langgraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ dependencies = [
"fastapi>=0.129.0",
"uvicorn>=0.41.0",
"databricks-langchain>=0.17.0",
"databricks-openai",
"databricks-ai-bridge",
"databricks-agents>=1.9.3",
"mlflow>=3.10.0",
"langgraph>=1.1.0",
Expand All @@ -36,6 +38,15 @@ setup = [
[tool.uv]
default-groups = ["dev", "setup"]

# TEMPORARY: pin databricks-ai-bridge and its integrations to the fix branch for
# https://github.com/databricks/databricks-ai-bridge/pull/435 while the fix is
# unreleased. Remove these once a databricks-ai-bridge release containing the
# VectorSearchIndex import fix is published to PyPI.
[tool.uv.sources]
databricks-ai-bridge = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import" }
databricks-openai = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import", subdirectory = "integrations/openai" }
databricks-langchain = { git = "https://github.com/databricks/databricks-ai-bridge.git", branch = "jennsun/fix-vector-search-index-import", subdirectory = "integrations/langchain" }


[project.scripts]
quickstart = "scripts.quickstart:main"
Expand Down