# databricks-ai-bridge **Repository Path**: mirrors_databricks/databricks-ai-bridge ## Basic Information - **Project Name**: databricks-ai-bridge - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-31 - **Last Updated**: 2025-10-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Databricks AI Bridge library The Databricks AI Bridge library provides a shared layer of APIs to interact with Databricks AI features, such as [Databricks AI/BI Genie ](https://www.databricks.com/product/ai-bi/genie) and [Vector Search](https://docs.databricks.com/en/generative-ai/vector-search.html). Use these packages to help [author agents with Agent Framework](https://docs.databricks.com/aws/en/generative-ai/agent-framework/author-agent#requirements) on Databricks. ## Integration Packages If you are using LangChain/LangGraph or the OpenAI SDK, we provide these integration packages for seamless integration of Databricks AI features. - [`databricks-langchain`](./integrations/langchain/README.md) - For LangChain/LangGraph users - [`databricks-openai`](./integrations/openai/README.md) - For OpenAI SDK users ## Installation If you're using LangChain/LangGraph or OpenAI: ```sh pip install databricks-langchain pip install databricks-openai ``` For frameworks without dedicated integration packages: ```sh pip install databricks-ai-bridge ``` ### Install from source With https: ```sh # For LangChain/LangGraph users (recommended): pip install git+https://git@github.com/databricks/databricks-ai-bridge.git#subdirectory=integrations/langchain # For OpenAI users (recommended): pip install git+https://git@github.com/databricks/databricks-ai-bridge.git#subdirectory=integrations/openai # Generic installation (only if needed): pip install git+https://git@github.com/databricks/databricks-ai-bridge.git ```