New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ai-sdk/openai-compatible

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ai-sdk/openai-compatible - npm Package Compare versions

Comparing version

to
0.0.17

6

CHANGELOG.md
# @ai-sdk/openai-compatible
## 0.0.17
### Patch Changes
- ae57beb: feat (provider/openai-compatible): add support for optional custom URL parameters in requests.
## 0.0.16

@@ -4,0 +10,0 @@

4

dist/index.d.ts

@@ -91,2 +91,6 @@ import { ProviderV1, LanguageModelV1, EmbeddingModelV1, LanguageModelV1ObjectGenerationMode } from '@ai-sdk/provider';

/**
Optional custom url query parameters to include in request urls.
*/
queryParams?: Record<string, string>;
/**
Custom fetch implementation. You can use it as a middleware to intercept requests,

@@ -93,0 +97,0 @@ or to provide a custom fetch implementation for e.g. testing.

@@ -1129,3 +1129,9 @@ "use strict";

provider: `${providerName}.${modelType}`,
url: ({ path }) => `${baseURL}${path}`,
url: ({ path }) => {
const url = new URL(`${baseURL}${path}`);
if (options.queryParams) {
url.search = new URLSearchParams(options.queryParams).toString();
}
return url.toString();
},
headers: getHeaders,

@@ -1132,0 +1138,0 @@ fetch: options.fetch

2

package.json
{
"name": "@ai-sdk/openai-compatible",
"version": "0.0.16",
"version": "0.0.17",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "sideEffects": false,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet