@databricks/ai-sdk-provider 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,12 +4,12 @@ Databricks provider for the [Vercel AI SDK](https://sdk.vercel.ai/docs).
4
4
 
5
5
  ## Features
6
6
 
7
- - 🚀 Support for three Databricks endpoint types:
8
- - **Chat Agent** (`agent/v2/chat`) - Databricks chat agent API
9
- - **Responses Agent** (`agent/v1/responses`) - Databricks responses agent API
10
- - **FM API** (`llm/v1/chat`) - Foundation model chat completions API
7
+ - 🚀 Support for all Databricks endpoint types:
8
+ - **Responses** (`agent/v1/responses`) - Foundation model and agent responses API ([docs](https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/api-reference#responses-api))
9
+ - **Chat Completions** (`llm/v1/chat`) - Foundation model chat completions API ([docs](https://docs.databricks.com/aws/en/machine-learning/foundation-model-apis/api-reference#chat-completions-api))
10
+ - **Chat Agent** (`agent/v2/chat`) - Legacy Databricks chat agent API ([docs](https://docs.databricks.com/aws/en/generative-ai/agent-framework/agent-legacy-schema))
11
11
  - 🔄 Stream and non-stream (generate) support for all endpoint types
12
- - 🛠️ Custom tool calling mechanism for Databricks agents
12
+ - 🛠️ Tool calling and agent support
13
13
  - 🔐 Flexible authentication (bring your own tokens/headers)
14
14
  - 🎯 Full TypeScript support
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databricks/ai-sdk-provider",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Databricks provider for Vercel AI SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",