@llmgateway/ai-sdk-provider 2.0.1 → 2.1.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.
package/dist/index.mjs CHANGED
@@ -1440,7 +1440,9 @@ var LLMGatewayChatLanguageModel = class {
1440
1440
  }
1441
1441
  }
1442
1442
  return null;
1443
- }).filter((p) => p !== null) : choice.message.reasoning ? [
1443
+ }).filter(
1444
+ (p) => p !== null
1445
+ ) : choice.message.reasoning ? [
1444
1446
  {
1445
1447
  type: "reasoning",
1446
1448
  text: choice.message.reasoning
@@ -2234,7 +2236,7 @@ function createLLMGateway(options = {}) {
2234
2236
  "The LLMGateway model function cannot be called with the new keyword."
2235
2237
  );
2236
2238
  }
2237
- if (modelId === "openai/gpt-3.5-turbo-instruct") {
2239
+ if (modelId === "openai/gpt-3.5-turbo") {
2238
2240
  return createCompletionModel(
2239
2241
  modelId,
2240
2242
  settings