Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai/core.ts>APIPromise#asResponse

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
method APIPromise.prototype.asResponse
import { APIPromise } from "https://deno.land/x/openai@v4.52.0/core.ts";

Gets the raw Response instance instead of parsing the response data.

If you want to parse the response body but still get the Response instance, you can use withResponse().

👋 Getting the wrong TypeScript type for Response? Try setting "moduleResolution": "NodeNext" if you can, or add one of these imports before your first import … from 'openai':

  • import 'openai/shims/node' (if you're running on Node)
  • import 'openai/shims/web' (otherwise)