UNPKG

@anthropic-ai/sdk

Version:

The official TypeScript library for the Anthropic API

102 lines (90 loc) 3.66 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { type BaseAnthropic } from '../client'; import { type PromiseOrValue } from '../internal/types'; import { type APIResponseProps, type WithRequestID, defaultParseResponse, addRequestID, } from '../internal/parse'; /** * A subclass of `Promise` providing additional helper methods * for interacting with the SDK. */ export class APIPromise<T> extends Promise<WithRequestID<T>> { private parsedPromise: Promise<WithRequestID<T>> | undefined; #client: BaseAnthropic; constructor( client: BaseAnthropic, private responsePromise: Promise<APIResponseProps>, private parseResponse: ( client: BaseAnthropic, props: APIResponseProps, ) => PromiseOrValue<WithRequestID<T>> = defaultParseResponse, ) { super((resolve) => { // this is maybe a bit weird but this has to be a no-op to not implicitly // parse the response body; instead .then, .catch, .finally are overridden // to parse the response resolve(null as any); }); this.#client = client; } _thenUnwrap<U>(transform: (data: T, props: APIResponseProps) => U): APIPromise<U> { return new APIPromise(this.#client, this.responsePromise, async (client, props) => addRequestID(transform(await this.parseResponse(client, props), props), props.response), ); } /** * 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 {@link withResponse()}. * * 👋 Getting the wrong TypeScript type for `Response`? * Try setting `"moduleResolution": "NodeNext"` or add `"lib": ["DOM"]` * to your `tsconfig.json`. */ asResponse(): Promise<Response> { return this.responsePromise.then((p) => p.response); } /** * Gets the parsed response data, the raw `Response` instance and the ID of the request, * returned via the `request-id` header which is useful for debugging requests and resporting * issues to Anthropic. * * If you just want to get the raw `Response` instance without parsing it, * you can use {@link asResponse()}. * * 👋 Getting the wrong TypeScript type for `Response`? * Try setting `"moduleResolution": "NodeNext"` or add `"lib": ["DOM"]` * to your `tsconfig.json`. */ async withResponse(): Promise<{ data: T; response: Response; request_id: string | null | undefined }> { const [data, response] = await Promise.all([this.parse(), this.asResponse()]); return { data, response, request_id: response.headers.get('request-id') }; } private parse(): Promise<WithRequestID<T>> { if (!this.parsedPromise) { this.parsedPromise = this.responsePromise.then( (data) => this.parseResponse(this.#client, data) as any as Promise<WithRequestID<T>>, ); } return this.parsedPromise; } override then<TResult1 = WithRequestID<T>, TResult2 = never>( onfulfilled?: ((value: WithRequestID<T>) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null, ): Promise<TResult1 | TResult2> { return this.parse().then(onfulfilled, onrejected); } override catch<TResult = never>( onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null, ): Promise<WithRequestID<T> | TResult> { return this.parse().catch(onrejected); } override finally(onfinally?: (() => void) | undefined | null): Promise<WithRequestID<T>> { return this.parse().finally(onfinally); } }