From 7cf893874a5a27cb3ee2b599f735adbdfed4f552 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 03:22:54 +0000 Subject: [PATCH 1/3] chore: rebuild project due to codegen change (#120) --- src/index.ts | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/src/index.ts b/src/index.ts index a5e08c1..fc5930d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -75,7 +75,6 @@ const environments = { local: 'http://localhost:8080', }; type Environment = keyof typeof environments; - export interface ClientOptions { /** * Defaults to process.env['JULEP_API_KEY']. @@ -256,25 +255,6 @@ export class Julep extends Core.APIClient { static fileFromPath = Uploads.fileFromPath; } -export { - JulepError, - APIError, - APIConnectionError, - APIConnectionTimeoutError, - APIUserAbortError, - NotFoundError, - ConflictError, - RateLimitError, - BadRequestError, - AuthenticationError, - InternalServerError, - PermissionDeniedError, - UnprocessableEntityError, -} from './error'; - -export import toFile = Uploads.toFile; -export import fileFromPath = Uploads.fileFromPath; - Julep.Agents = Agents; Julep.AgentsOffsetPagination = AgentsOffsetPagination; Julep.Sessions = Sessions; @@ -287,7 +267,6 @@ Julep.Tasks = Tasks; Julep.TasksOffsetPagination = TasksOffsetPagination; Julep.Executions = Executions; Julep.ExecutionsOffsetPagination = ExecutionsOffsetPagination; - export declare namespace Julep { export type RequestOptions = Core.RequestOptions; @@ -374,4 +353,21 @@ export declare namespace Julep { export type ResourceUpdated = API.ResourceUpdated; } +export { toFile, fileFromPath } from '@julep/sdk/uploads'; +export { + JulepError, + APIError, + APIConnectionError, + APIConnectionTimeoutError, + APIUserAbortError, + NotFoundError, + ConflictError, + RateLimitError, + BadRequestError, + AuthenticationError, + InternalServerError, + PermissionDeniedError, + UnprocessableEntityError, +} from '@julep/sdk/error'; + export default Julep; From 4aa31f766842d652c7418c6d97e905390ddfed06 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:13:04 +0000 Subject: [PATCH 2/3] feat(api): api update (#122) --- .stats.yml | 2 +- src/resources/agents/tools.ts | 192 ---- src/resources/sessions.ts | 192 ---- src/resources/tasks.ts | 1186 +--------------------- tests/api-resources/agents/tools.test.ts | 2 - tests/api-resources/sessions.test.ts | 3 - tests/api-resources/tasks.test.ts | 6 - 7 files changed, 18 insertions(+), 1565 deletions(-) diff --git a/.stats.yml b/.stats.yml index 3738698..a5ee6da 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 50 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-7d90eac366f34605caf4124314f36429756573b066ac634b9b434250237eb3d5.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-8f73ea6656ba5820b9e3c3ab244ad2a0599a44a63c4fb6d4aa3363d2537b4d4b.yml diff --git a/src/resources/agents/tools.ts b/src/resources/agents/tools.ts index 199507b..fb97743 100644 --- a/src/resources/agents/tools.ts +++ b/src/resources/agents/tools.ts @@ -138,7 +138,6 @@ export interface ToolListResponse { | ToolListResponse.BrowserbaseGetSessionLiveURLsIntegrationDef | ToolListResponse.BrowserbaseGetSessionConnectURLIntegrationDef | ToolListResponse.RemoteBrowserIntegrationDef - | ToolListResponse.LlamaParseIntegrationDef | null; /** @@ -164,8 +163,6 @@ export namespace ToolListResponse { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -755,51 +752,6 @@ export namespace ToolListResponse { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -884,7 +836,6 @@ export interface ToolCreateParams { | ToolCreateParams.BrowserbaseGetSessionLiveURLsIntegrationDef | ToolCreateParams.BrowserbaseGetSessionConnectURLIntegrationDef | ToolCreateParams.RemoteBrowserIntegrationDef - | ToolCreateParams.LlamaParseIntegrationDef | null; /** @@ -910,8 +861,6 @@ export namespace ToolCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -1501,51 +1450,6 @@ export namespace ToolCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -1630,7 +1534,6 @@ export interface ToolUpdateParams { | ToolUpdateParams.BrowserbaseGetSessionLiveURLsIntegrationDef | ToolUpdateParams.BrowserbaseGetSessionConnectURLIntegrationDef | ToolUpdateParams.RemoteBrowserIntegrationDef - | ToolUpdateParams.LlamaParseIntegrationDef | null; /** @@ -1656,8 +1559,6 @@ export namespace ToolUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -2247,51 +2148,6 @@ export namespace ToolUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -2371,7 +2227,6 @@ export interface ToolPatchParams { | ToolPatchParams.BrowserbaseGetSessionLiveURLsIntegrationDefUpdate | ToolPatchParams.BrowserbaseGetSessionConnectURLIntegrationDefUpdate | ToolPatchParams.RemoteBrowserIntegrationDefUpdate - | ToolPatchParams.LlamaParseIntegrationDefUpdate | null; name?: string | null; @@ -2405,8 +2260,6 @@ export namespace ToolPatchParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -3001,51 +2854,6 @@ export namespace ToolPatchParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDefUpdate { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDefUpdate.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDefUpdate.Setup | null; - } - - export namespace LlamaParseIntegrationDefUpdate { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file?: string | null; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key?: string | null; - } - } - /** * System definition */ diff --git a/src/resources/sessions.ts b/src/resources/sessions.ts index 86de07c..36bd01e 100644 --- a/src/resources/sessions.ts +++ b/src/resources/sessions.ts @@ -240,7 +240,6 @@ export namespace ChatInput { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -266,8 +265,6 @@ export namespace ChatInput { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -857,51 +854,6 @@ export namespace ChatInput { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -1786,7 +1738,6 @@ export namespace Entry { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -1812,8 +1763,6 @@ export namespace Entry { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -2403,51 +2352,6 @@ export namespace Entry { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -2676,7 +2580,6 @@ export namespace Entry { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -2702,8 +2605,6 @@ export namespace Entry { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -3293,51 +3194,6 @@ export namespace Entry { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -4387,7 +4243,6 @@ export namespace SessionChatParams { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -4413,8 +4268,6 @@ export namespace SessionChatParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -5004,51 +4857,6 @@ export namespace SessionChatParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ diff --git a/src/resources/tasks.ts b/src/resources/tasks.ts index 8581de0..0455ab2 100644 --- a/src/resources/tasks.ts +++ b/src/resources/tasks.ts @@ -404,7 +404,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -430,8 +429,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -1021,51 +1018,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -1534,7 +1486,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -1560,8 +1511,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -2151,51 +2100,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -2628,7 +2532,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -2654,8 +2557,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -3245,51 +3146,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -3753,7 +3609,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -3779,8 +3634,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -4370,51 +4223,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -4899,7 +4707,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -4925,8 +4732,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -5516,51 +5321,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -5962,7 +5722,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -5988,8 +5747,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -6579,51 +6336,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -7031,7 +6743,6 @@ export namespace Task { | CreateToolRequestOutput.BrowserbaseGetSessionLiveURLsIntegrationDef | CreateToolRequestOutput.BrowserbaseGetSessionConnectURLIntegrationDef | CreateToolRequestOutput.RemoteBrowserIntegrationDef - | CreateToolRequestOutput.LlamaParseIntegrationDef | null; /** @@ -7057,8 +6768,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -7648,51 +7357,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -7817,7 +7481,6 @@ export namespace Task { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -7843,8 +7506,6 @@ export namespace Task { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -8434,51 +8095,6 @@ export namespace Task { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -8844,7 +8460,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -8870,8 +8485,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -9462,71 +9075,26 @@ export namespace TaskCreateParams { } /** - * LlamaParse integration definition + * System definition */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; + export interface System { + operation: + | 'create' + | 'update' + | 'patch' + | 'create_or_update' + | 'embed' + | 'change_status' + | 'search' + | 'chat' + | 'history' + | 'delete' + | 'get' + | 'list'; - method?: string | null; + resource: 'agent' | 'user' | 'task' | 'execution' | 'doc' | 'session' | 'job'; - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - - /** - * System definition - */ - export interface System { - operation: - | 'create' - | 'update' - | 'patch' - | 'create_or_update' - | 'embed' - | 'change_status' - | 'search' - | 'chat' - | 'history' - | 'delete' - | 'get' - | 'list'; - - resource: 'agent' | 'user' | 'task' | 'execution' | 'doc' | 'session' | 'job'; - - arguments?: unknown | null; + arguments?: unknown | null; resource_id?: string | null; @@ -9950,7 +9518,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -9976,8 +9543,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -10567,51 +10132,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -11022,7 +10542,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -11048,8 +10567,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -11639,51 +11156,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -12125,7 +11597,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -12151,8 +11622,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -12742,51 +12211,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -13247,7 +12671,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -13273,8 +12696,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -13864,51 +13285,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -14294,7 +13670,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -14320,8 +13695,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -14911,51 +14284,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -15347,7 +14675,6 @@ export namespace TaskCreateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -15373,8 +14700,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -15964,51 +15289,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -16123,7 +15403,6 @@ export namespace TaskCreateParams { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -16149,8 +15428,6 @@ export namespace TaskCreateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -16740,51 +16017,6 @@ export namespace TaskCreateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -17156,7 +16388,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -17182,8 +16413,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -17773,51 +17002,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -18262,7 +17446,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -18288,8 +17471,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -18879,51 +18060,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -19334,7 +18470,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -19360,8 +18495,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -19951,51 +19084,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -20437,7 +19525,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -20463,8 +19550,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -21054,51 +20139,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -21559,7 +20599,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -21585,8 +20624,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -22176,51 +21213,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -22606,7 +21598,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -22632,8 +21623,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -23223,51 +22212,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -23659,7 +22603,6 @@ export namespace TaskCreateOrUpdateParams { | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionLiveURLsIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.BrowserbaseGetSessionConnectURLIntegrationDef | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.RemoteBrowserIntegrationDef - | AgentsAPIAutogenOpenAPIModelCreateToolRequestInput.LlamaParseIntegrationDef | null; /** @@ -23685,8 +22628,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -24276,51 +23217,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ @@ -24435,7 +23331,6 @@ export namespace TaskCreateOrUpdateParams { | Tool.BrowserbaseGetSessionLiveURLsIntegrationDef | Tool.BrowserbaseGetSessionConnectURLIntegrationDef | Tool.RemoteBrowserIntegrationDef - | Tool.LlamaParseIntegrationDef | null; /** @@ -24461,8 +23356,6 @@ export namespace TaskCreateOrUpdateParams { data?: unknown | null; - files?: unknown | null; - follow_redirects?: boolean | null; headers?: Record | null; @@ -25052,51 +23945,6 @@ export namespace TaskCreateOrUpdateParams { } } - /** - * LlamaParse integration definition - */ - export interface LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - arguments?: LlamaParseIntegrationDef.Arguments | null; - - method?: string | null; - - provider?: 'llama_parse'; - - /** - * Setup parameters for LlamaParse integration - */ - setup?: LlamaParseIntegrationDef.Setup | null; - } - - export namespace LlamaParseIntegrationDef { - /** - * Arguments for LlamaParse integration - */ - export interface Arguments { - file: string; - - filename?: string | null; - - language?: string; - - num_workers?: number; - - result_format?: 'text' | 'markdown'; - - verbose?: boolean; - } - - /** - * Setup parameters for LlamaParse integration - */ - export interface Setup { - llamaparse_api_key: string; - } - } - /** * System definition */ diff --git a/tests/api-resources/agents/tools.test.ts b/tests/api-resources/agents/tools.test.ts index 5574a83..79b9afa 100644 --- a/tests/api-resources/agents/tools.test.ts +++ b/tests/api-resources/agents/tools.test.ts @@ -33,7 +33,6 @@ describe('resource tools', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -91,7 +90,6 @@ describe('resource tools', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, diff --git a/tests/api-resources/sessions.test.ts b/tests/api-resources/sessions.test.ts index 465ce95..3c765e7 100644 --- a/tests/api-resources/sessions.test.ts +++ b/tests/api-resources/sessions.test.ts @@ -184,7 +184,6 @@ describe('resource sessions', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -221,7 +220,6 @@ describe('resource sessions', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -258,7 +256,6 @@ describe('resource sessions', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, diff --git a/tests/api-resources/tasks.test.ts b/tests/api-resources/tasks.test.ts index 4563dfc..e0ea09e 100644 --- a/tests/api-resources/tasks.test.ts +++ b/tests/api-resources/tasks.test.ts @@ -41,7 +41,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -78,7 +77,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -115,7 +113,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -212,7 +209,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -249,7 +245,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, @@ -286,7 +281,6 @@ describe('resource tasks', () => { content: 'content', cookies: { foo: 'string' }, data: {}, - files: {}, follow_redirects: true, headers: { foo: 'string' }, json: {}, From 66c133dee58dee9e4dd6a96121cd15847fbd5587 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:13:20 +0000 Subject: [PATCH 3/3] release: 1.36.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9fa2aaa..d82abb2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.35.0" + ".": "1.36.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0407c79..b2e5594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.36.0 (2024-11-12) + +Full Changelog: [v1.35.0...v1.36.0](https://github.com/julep-ai/node-sdk/compare/v1.35.0...v1.36.0) + +### Features + +* **api:** api update ([#122](https://github.com/julep-ai/node-sdk/issues/122)) ([4aa31f7](https://github.com/julep-ai/node-sdk/commit/4aa31f766842d652c7418c6d97e905390ddfed06)) + + +### Chores + +* rebuild project due to codegen change ([#120](https://github.com/julep-ai/node-sdk/issues/120)) ([7cf8938](https://github.com/julep-ai/node-sdk/commit/7cf893874a5a27cb3ee2b599f735adbdfed4f552)) + ## 1.35.0 (2024-11-11) Full Changelog: [v1.34.0...v1.35.0](https://github.com/julep-ai/node-sdk/compare/v1.34.0...v1.35.0) diff --git a/package.json b/package.json index 156dd1b..98c2ed4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@julep/sdk", - "version": "1.35.0", + "version": "1.36.0", "description": "The official TypeScript library for the Julep API", "author": "Julep ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 14be373..aa1c1d8 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.35.0'; // x-release-please-version +export const VERSION = '1.36.0'; // x-release-please-version