| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- "use strict";
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- var desc = Object.getOwnPropertyDescriptor(m, k);
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
- desc = { enumerable: true, get: function() { return m[k]; } };
- }
- Object.defineProperty(o, k2, desc);
- }) : (function(o, m, k, k2) {
- if (k2 === undefined) k2 = k;
- o[k2] = m[k];
- }));
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
- Object.defineProperty(o, "default", { enumerable: true, value: v });
- }) : function(o, v) {
- o["default"] = v;
- });
- var __importStar = (this && this.__importStar) || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
- __setModuleDefault(result, mod);
- return result;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.RunsPage = exports.Runs = void 0;
- const resource_1 = require("../../../../resource.js");
- const core_1 = require("../../../../core.js");
- const AssistantStream_1 = require("../../../../lib/AssistantStream.js");
- const core_2 = require("../../../../core.js");
- const StepsAPI = __importStar(require("./steps.js"));
- const steps_1 = require("./steps.js");
- const pagination_1 = require("../../../../pagination.js");
- /**
- * @deprecated The Assistants API is deprecated in favor of the Responses API
- */
- class Runs extends resource_1.APIResource {
- constructor() {
- super(...arguments);
- this.steps = new StepsAPI.Steps(this._client);
- }
- create(threadId, params, options) {
- const { include, ...body } = params;
- return this._client.post(`/threads/${threadId}/runs`, {
- query: { include },
- body,
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- stream: params.stream ?? false,
- });
- }
- /**
- * Retrieves a run.
- *
- * @deprecated The Assistants API is deprecated in favor of the Responses API
- */
- retrieve(threadId, runId, options) {
- return this._client.get(`/threads/${threadId}/runs/${runId}`, {
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- });
- }
- /**
- * Modifies a run.
- *
- * @deprecated The Assistants API is deprecated in favor of the Responses API
- */
- update(threadId, runId, body, options) {
- return this._client.post(`/threads/${threadId}/runs/${runId}`, {
- body,
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- });
- }
- list(threadId, query = {}, options) {
- if ((0, core_1.isRequestOptions)(query)) {
- return this.list(threadId, {}, query);
- }
- return this._client.getAPIList(`/threads/${threadId}/runs`, RunsPage, {
- query,
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- });
- }
- /**
- * Cancels a run that is `in_progress`.
- *
- * @deprecated The Assistants API is deprecated in favor of the Responses API
- */
- cancel(threadId, runId, options) {
- return this._client.post(`/threads/${threadId}/runs/${runId}/cancel`, {
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- });
- }
- /**
- * A helper to create a run an poll for a terminal state. More information on Run
- * lifecycles can be found here:
- * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
- */
- async createAndPoll(threadId, body, options) {
- const run = await this.create(threadId, body, options);
- return await this.poll(threadId, run.id, options);
- }
- /**
- * Create a Run stream
- *
- * @deprecated use `stream` instead
- */
- createAndStream(threadId, body, options) {
- return AssistantStream_1.AssistantStream.createAssistantStream(threadId, this._client.beta.threads.runs, body, options);
- }
- /**
- * A helper to poll a run status until it reaches a terminal state. More
- * information on Run lifecycles can be found here:
- * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
- */
- async poll(threadId, runId, options) {
- const headers = { ...options?.headers, 'X-Stainless-Poll-Helper': 'true' };
- if (options?.pollIntervalMs) {
- headers['X-Stainless-Custom-Poll-Interval'] = options.pollIntervalMs.toString();
- }
- while (true) {
- const { data: run, response } = await this.retrieve(threadId, runId, {
- ...options,
- headers: { ...options?.headers, ...headers },
- }).withResponse();
- switch (run.status) {
- //If we are in any sort of intermediate state we poll
- case 'queued':
- case 'in_progress':
- case 'cancelling':
- let sleepInterval = 5000;
- if (options?.pollIntervalMs) {
- sleepInterval = options.pollIntervalMs;
- }
- else {
- const headerInterval = response.headers.get('openai-poll-after-ms');
- if (headerInterval) {
- const headerIntervalMs = parseInt(headerInterval);
- if (!isNaN(headerIntervalMs)) {
- sleepInterval = headerIntervalMs;
- }
- }
- }
- await (0, core_2.sleep)(sleepInterval);
- break;
- //We return the run in any terminal state.
- case 'requires_action':
- case 'incomplete':
- case 'cancelled':
- case 'completed':
- case 'failed':
- case 'expired':
- return run;
- }
- }
- }
- /**
- * Create a Run stream
- */
- stream(threadId, body, options) {
- return AssistantStream_1.AssistantStream.createAssistantStream(threadId, this._client.beta.threads.runs, body, options);
- }
- submitToolOutputs(threadId, runId, body, options) {
- return this._client.post(`/threads/${threadId}/runs/${runId}/submit_tool_outputs`, {
- body,
- ...options,
- headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
- stream: body.stream ?? false,
- });
- }
- /**
- * A helper to submit a tool output to a run and poll for a terminal run state.
- * More information on Run lifecycles can be found here:
- * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
- */
- async submitToolOutputsAndPoll(threadId, runId, body, options) {
- const run = await this.submitToolOutputs(threadId, runId, body, options);
- return await this.poll(threadId, run.id, options);
- }
- /**
- * Submit the tool outputs from a previous run and stream the run to a terminal
- * state. More information on Run lifecycles can be found here:
- * https://platform.openai.com/docs/assistants/how-it-works/runs-and-run-steps
- */
- submitToolOutputsStream(threadId, runId, body, options) {
- return AssistantStream_1.AssistantStream.createToolAssistantStream(threadId, runId, this._client.beta.threads.runs, body, options);
- }
- }
- exports.Runs = Runs;
- class RunsPage extends pagination_1.CursorPage {
- }
- exports.RunsPage = RunsPage;
- Runs.RunsPage = RunsPage;
- Runs.Steps = steps_1.Steps;
- Runs.RunStepsPage = steps_1.RunStepsPage;
- //# sourceMappingURL=runs.js.map
|