@jaypie/llm 1.2.18 → 1.2.19

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.
@@ -2314,8 +2314,9 @@ class OpenAiAdapter extends BaseProviderAdapter {
2314
2314
  async executeRequest(client, request, signal) {
2315
2315
  const openai = client;
2316
2316
  try {
2317
+ return await openai.responses.create(
2317
2318
  // @ts-expect-error OpenAI SDK types don't match our request format exactly
2318
- return await openai.responses.create(request, signal ? { signal } : undefined);
2319
+ request, signal ? { signal } : undefined);
2319
2320
  }
2320
2321
  catch (error) {
2321
2322
  if (signal?.aborted)