@ai-sdk/openai-compatible
Advanced tools
Comparing version
# @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 @@ |
@@ -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 |
{ | ||
"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
285428
0.58%2930
0.55%