@gooddata/api-client-tiger 11.53.0-alpha.4 → 11.53.0-alpha.6
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +2726 -2990
- package/esm/endpoints/genAI/index.d.ts +2 -2
- package/esm/endpoints/genAI/index.d.ts.map +1 -1
- package/esm/endpoints/genAI/index.js +3 -3
- package/esm/genAI.d.ts +2 -2
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js +2 -2
- package/esm/generated/ai-json-api/api.d.ts +677 -766
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +784 -832
- package/esm/generated/automation-json-api/api.d.ts +1 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +1 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +8554 -6063
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +6993 -5211
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/package.json +4 -4
|
@@ -603,6 +603,15 @@ export interface AiConversationListResponse {
|
|
|
603
603
|
'data': Array<AiConversationResponse>;
|
|
604
604
|
'meta': AiConversationListMeta;
|
|
605
605
|
}
|
|
606
|
+
/**
|
|
607
|
+
* What a conversation exists to serve. USER is a person\'s own thread in the assistant. The others are utility modes, where the conversation serves something else and is kept out of the user\'s history: PREVIEW backs the Agent Builder preview pane, MCP backs a single-purpose MCP tool call.
|
|
608
|
+
*/
|
|
609
|
+
export declare const AiConversationMode: {
|
|
610
|
+
readonly USER: "USER";
|
|
611
|
+
readonly PREVIEW: "PREVIEW";
|
|
612
|
+
readonly MCP: "MCP";
|
|
613
|
+
};
|
|
614
|
+
export type AiConversationMode = typeof AiConversationMode[keyof typeof AiConversationMode];
|
|
606
615
|
/**
|
|
607
616
|
* Conversation returned by the agentic HTTP API.
|
|
608
617
|
*/
|
|
@@ -617,13 +626,18 @@ export interface AiConversationResponse {
|
|
|
617
626
|
*/
|
|
618
627
|
'createdAt': string;
|
|
619
628
|
/**
|
|
620
|
-
*
|
|
629
|
+
* Deprecated, use `mode`. True only when `mode` is PREVIEW.
|
|
630
|
+
* @deprecated
|
|
621
631
|
*/
|
|
622
632
|
'isPreview'?: boolean;
|
|
623
633
|
/**
|
|
624
634
|
* Last activity timestamp (ISO-8601 UTC).
|
|
625
635
|
*/
|
|
626
636
|
'lastActivityAt': string;
|
|
637
|
+
/**
|
|
638
|
+
* What this conversation serves. USER is the user\'s own thread; PREVIEW backs the Agent Builder preview pane; MCP backs a single-purpose MCP tool call. Anything other than USER is a utility conversation, kept out of the user\'s history.
|
|
639
|
+
*/
|
|
640
|
+
'mode'?: AiConversationMode;
|
|
627
641
|
/**
|
|
628
642
|
* Organization identifier.
|
|
629
643
|
*/
|
|
@@ -675,6 +689,7 @@ export interface AiConversationUpdateRequest {
|
|
|
675
689
|
*/
|
|
676
690
|
export interface AiCreateConversationRequest {
|
|
677
691
|
'agentId'?: string | null;
|
|
692
|
+
'mode'?: AiConversationMode | null;
|
|
678
693
|
}
|
|
679
694
|
/**
|
|
680
695
|
* AAC ref: dashboard.json (PoC subset). The dashboard builder always emits the tabbed layout (``tabs``); ``sections`` is kept for compatibility with the AAC schema\'s flat (single-layout) form.
|
|
@@ -1645,6 +1660,7 @@ export interface AiSendMessageItem {
|
|
|
1645
1660
|
}
|
|
1646
1661
|
export type AiSendMessageItemRoleEnum = 'user';
|
|
1647
1662
|
export interface AiSendMessageOptions {
|
|
1663
|
+
'pinnedSkills'?: Array<string> | null;
|
|
1648
1664
|
'reasoningEffort'?: AiRequestedReasoningEffort | null;
|
|
1649
1665
|
'search'?: AiSendMessageSearchOptions | null;
|
|
1650
1666
|
}
|
|
@@ -2076,54 +2092,14 @@ export interface AiWhatIfScenarioVariant {
|
|
|
2076
2092
|
'label': string;
|
|
2077
2093
|
}
|
|
2078
2094
|
/**
|
|
2079
|
-
*
|
|
2080
|
-
* @summary
|
|
2081
|
-
* @param {
|
|
2082
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2083
|
-
* @throws {RequiredError}
|
|
2084
|
-
*/
|
|
2085
|
-
export declare function AIObservabilityAiAxiosParamCreator_GetObservabilityOverview(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2086
|
-
/**
|
|
2087
|
-
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
2088
|
-
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
2089
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
2090
|
-
* @param {string} basePath Base path.
|
|
2095
|
+
* List agents the user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the user, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
2096
|
+
* @summary List available agents
|
|
2097
|
+
* @param {string} workspaceId
|
|
2091
2098
|
* @param {*} [options] Override http request option.
|
|
2092
2099
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2093
2100
|
* @throws {RequiredError}
|
|
2094
2101
|
*/
|
|
2095
|
-
export declare function
|
|
2096
|
-
/**
|
|
2097
|
-
* AIObservabilityAi - interface
|
|
2098
|
-
* @export
|
|
2099
|
-
* @interface AIObservabilityAi
|
|
2100
|
-
*/
|
|
2101
|
-
export interface AIObservabilityAiInterface {
|
|
2102
|
-
/**
|
|
2103
|
-
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
2104
|
-
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
2105
|
-
* @param {*} [options] Override http request option.
|
|
2106
|
-
* @throws {RequiredError}
|
|
2107
|
-
* @memberof AIObservabilityAiInterface
|
|
2108
|
-
*/
|
|
2109
|
-
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
2110
|
-
}
|
|
2111
|
-
/**
|
|
2112
|
-
* AIObservabilityAi - object-oriented interface
|
|
2113
|
-
* @export
|
|
2114
|
-
* @class AIObservabilityAi
|
|
2115
|
-
* @extends {BaseAPI}
|
|
2116
|
-
*/
|
|
2117
|
-
export declare class AIObservabilityAi extends BaseAPI implements AIObservabilityAiInterface {
|
|
2118
|
-
/**
|
|
2119
|
-
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
2120
|
-
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
2121
|
-
* @param {*} [options] Override http request option.
|
|
2122
|
-
* @throws {RequiredError}
|
|
2123
|
-
* @memberof AIObservabilityAi
|
|
2124
|
-
*/
|
|
2125
|
-
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
2126
|
-
}
|
|
2102
|
+
export declare function AgentsAiAxiosParamCreator_ListAgents(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2127
2103
|
/**
|
|
2128
2104
|
*
|
|
2129
2105
|
* @summary Get Skills
|
|
@@ -2131,68 +2107,28 @@ export declare class AIObservabilityAi extends BaseAPI implements AIObservabilit
|
|
|
2131
2107
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2132
2108
|
* @throws {RequiredError}
|
|
2133
2109
|
*/
|
|
2134
|
-
export declare function
|
|
2110
|
+
export declare function AgentsAiAxiosParamCreator_ListAvailableSkills(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2135
2111
|
/**
|
|
2136
|
-
*
|
|
2137
|
-
* @summary
|
|
2112
|
+
* List agents the user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the user, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
2113
|
+
* @summary List available agents
|
|
2138
2114
|
* @param {AxiosInstance} axios Axios instance.
|
|
2139
2115
|
* @param {string} basePath Base path.
|
|
2116
|
+
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
2140
2117
|
* @param {*} [options] Override http request option.
|
|
2141
2118
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2142
2119
|
* @throws {RequiredError}
|
|
2143
2120
|
*/
|
|
2144
|
-
export declare function
|
|
2145
|
-
/**
|
|
2146
|
-
* AgentAi - interface
|
|
2147
|
-
* @export
|
|
2148
|
-
* @interface AgentAi
|
|
2149
|
-
*/
|
|
2150
|
-
export interface AgentAiInterface {
|
|
2151
|
-
/**
|
|
2152
|
-
*
|
|
2153
|
-
* @summary Get Skills
|
|
2154
|
-
* @param {*} [options] Override http request option.
|
|
2155
|
-
* @throws {RequiredError}
|
|
2156
|
-
* @memberof AgentAiInterface
|
|
2157
|
-
*/
|
|
2158
|
-
listAvailableSkills(options?: AxiosRequestConfig): AxiosPromise<Array<AiSkillResponse>>;
|
|
2159
|
-
}
|
|
2160
|
-
/**
|
|
2161
|
-
* AgentAi - object-oriented interface
|
|
2162
|
-
* @export
|
|
2163
|
-
* @class AgentAi
|
|
2164
|
-
* @extends {BaseAPI}
|
|
2165
|
-
*/
|
|
2166
|
-
export declare class AgentAi extends BaseAPI implements AgentAiInterface {
|
|
2167
|
-
/**
|
|
2168
|
-
*
|
|
2169
|
-
* @summary Get Skills
|
|
2170
|
-
* @param {*} [options] Override http request option.
|
|
2171
|
-
* @throws {RequiredError}
|
|
2172
|
-
* @memberof AgentAi
|
|
2173
|
-
*/
|
|
2174
|
-
listAvailableSkills(options?: AxiosRequestConfig): AxiosPromise<AiSkillResponse[]>;
|
|
2175
|
-
}
|
|
2176
|
-
/**
|
|
2177
|
-
* List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
2178
|
-
* @summary List agents available to the current user in a workspace
|
|
2179
|
-
* @param {string} workspaceId
|
|
2180
|
-
* @param {*} [options] Override http request option.
|
|
2181
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2182
|
-
* @throws {RequiredError}
|
|
2183
|
-
*/
|
|
2184
|
-
export declare function AgentsAiAxiosParamCreator_ListAgents(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2121
|
+
export declare function AgentsAi_ListAgents(axios: AxiosInstance, basePath: string, requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiAgentListResponse>;
|
|
2185
2122
|
/**
|
|
2186
|
-
*
|
|
2187
|
-
* @summary
|
|
2123
|
+
*
|
|
2124
|
+
* @summary Get Skills
|
|
2188
2125
|
* @param {AxiosInstance} axios Axios instance.
|
|
2189
2126
|
* @param {string} basePath Base path.
|
|
2190
|
-
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
2191
2127
|
* @param {*} [options] Override http request option.
|
|
2192
2128
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2193
2129
|
* @throws {RequiredError}
|
|
2194
2130
|
*/
|
|
2195
|
-
export declare function
|
|
2131
|
+
export declare function AgentsAi_ListAvailableSkills(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<Array<AiSkillResponse>>;
|
|
2196
2132
|
/**
|
|
2197
2133
|
* AgentsAi - interface
|
|
2198
2134
|
* @export
|
|
@@ -2200,14 +2136,22 @@ export declare function AgentsAi_ListAgents(axios: AxiosInstance, basePath: stri
|
|
|
2200
2136
|
*/
|
|
2201
2137
|
export interface AgentsAiInterface {
|
|
2202
2138
|
/**
|
|
2203
|
-
* List agents the
|
|
2204
|
-
* @summary List
|
|
2139
|
+
* List agents the user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the user, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
2140
|
+
* @summary List available agents
|
|
2205
2141
|
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
2206
2142
|
* @param {*} [options] Override http request option.
|
|
2207
2143
|
* @throws {RequiredError}
|
|
2208
2144
|
* @memberof AgentsAiInterface
|
|
2209
2145
|
*/
|
|
2210
2146
|
listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
|
|
2147
|
+
/**
|
|
2148
|
+
*
|
|
2149
|
+
* @summary Get Skills
|
|
2150
|
+
* @param {*} [options] Override http request option.
|
|
2151
|
+
* @throws {RequiredError}
|
|
2152
|
+
* @memberof AgentsAiInterface
|
|
2153
|
+
*/
|
|
2154
|
+
listAvailableSkills(options?: AxiosRequestConfig): AxiosPromise<Array<AiSkillResponse>>;
|
|
2211
2155
|
}
|
|
2212
2156
|
/**
|
|
2213
2157
|
* Request parameters for listAgents operation in AgentsAi.
|
|
@@ -2230,18 +2174,26 @@ export interface AgentsAiListAgentsRequest {
|
|
|
2230
2174
|
*/
|
|
2231
2175
|
export declare class AgentsAi extends BaseAPI implements AgentsAiInterface {
|
|
2232
2176
|
/**
|
|
2233
|
-
* List agents the
|
|
2234
|
-
* @summary List
|
|
2177
|
+
* List agents the user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the user, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
2178
|
+
* @summary List available agents
|
|
2235
2179
|
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
2236
2180
|
* @param {*} [options] Override http request option.
|
|
2237
2181
|
* @throws {RequiredError}
|
|
2238
2182
|
* @memberof AgentsAi
|
|
2239
2183
|
*/
|
|
2240
2184
|
listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
|
|
2185
|
+
/**
|
|
2186
|
+
*
|
|
2187
|
+
* @summary Get Skills
|
|
2188
|
+
* @param {*} [options] Override http request option.
|
|
2189
|
+
* @throws {RequiredError}
|
|
2190
|
+
* @memberof AgentsAi
|
|
2191
|
+
*/
|
|
2192
|
+
listAvailableSkills(options?: AxiosRequestConfig): AxiosPromise<AiSkillResponse[]>;
|
|
2241
2193
|
}
|
|
2242
2194
|
/**
|
|
2243
2195
|
*
|
|
2244
|
-
* @summary Delete
|
|
2196
|
+
* @summary Delete a conversation
|
|
2245
2197
|
* @param {string} workspaceId
|
|
2246
2198
|
* @param {string} conversationId
|
|
2247
2199
|
* @param {*} [options] Override http request option.
|
|
@@ -2251,7 +2203,7 @@ export declare class AgentsAi extends BaseAPI implements AgentsAiInterface {
|
|
|
2251
2203
|
export declare function ConversationsAiAxiosParamCreator_DeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2252
2204
|
/**
|
|
2253
2205
|
*
|
|
2254
|
-
* @summary Get
|
|
2206
|
+
* @summary Get a conversation
|
|
2255
2207
|
* @param {string} workspaceId
|
|
2256
2208
|
* @param {string} conversationId
|
|
2257
2209
|
* @param {*} [options] Override http request option.
|
|
@@ -2259,9 +2211,40 @@ export declare function ConversationsAiAxiosParamCreator_DeleteConversationApiV1
|
|
|
2259
2211
|
* @throws {RequiredError}
|
|
2260
2212
|
*/
|
|
2261
2213
|
export declare function ConversationsAiAxiosParamCreator_GetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2214
|
+
/**
|
|
2215
|
+
* The agent\'s interaction steps, available when interaction intelligence is enabled.
|
|
2216
|
+
* @summary List reasoning steps
|
|
2217
|
+
* @param {string} workspaceId
|
|
2218
|
+
* @param {string} conversationId
|
|
2219
|
+
* @param {string} [responseId]
|
|
2220
|
+
* @param {*} [options] Override http request option.
|
|
2221
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2222
|
+
* @throws {RequiredError}
|
|
2223
|
+
*/
|
|
2224
|
+
export declare function ConversationsAiAxiosParamCreator_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(workspaceId: string, conversationId: string, responseId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2225
|
+
/**
|
|
2226
|
+
* Items in the order the agent produced them: text, visualizations, dashboards.
|
|
2227
|
+
* @summary List conversation items
|
|
2228
|
+
* @param {string} workspaceId
|
|
2229
|
+
* @param {string} conversationId
|
|
2230
|
+
* @param {*} [options] Override http request option.
|
|
2231
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2232
|
+
* @throws {RequiredError}
|
|
2233
|
+
*/
|
|
2234
|
+
export declare function ConversationsAiAxiosParamCreator_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2262
2235
|
/**
|
|
2263
2236
|
*
|
|
2264
|
-
* @summary
|
|
2237
|
+
* @summary List responses
|
|
2238
|
+
* @param {string} workspaceId
|
|
2239
|
+
* @param {string} conversationId
|
|
2240
|
+
* @param {*} [options] Override http request option.
|
|
2241
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2242
|
+
* @throws {RequiredError}
|
|
2243
|
+
*/
|
|
2244
|
+
export declare function ConversationsAiAxiosParamCreator_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2245
|
+
/**
|
|
2246
|
+
* Conversations belonging to the current user in this workspace.
|
|
2247
|
+
* @summary List conversations
|
|
2265
2248
|
* @param {string} workspaceId
|
|
2266
2249
|
* @param {boolean} [isPreview]
|
|
2267
2250
|
* @param {number} [page]
|
|
@@ -2272,8 +2255,8 @@ export declare function ConversationsAiAxiosParamCreator_GetConversationApiV1AiW
|
|
|
2272
2255
|
*/
|
|
2273
2256
|
export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(workspaceId: string, isPreview?: boolean, page?: number, size?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2274
2257
|
/**
|
|
2275
|
-
*
|
|
2276
|
-
* @summary
|
|
2258
|
+
* Only the title and the pinned flag can be changed.
|
|
2259
|
+
* @summary Update a conversation
|
|
2277
2260
|
* @param {string} workspaceId
|
|
2278
2261
|
* @param {string} conversationId
|
|
2279
2262
|
* @param {AiConversationUpdateRequest} aiConversationUpdateRequest
|
|
@@ -2282,9 +2265,45 @@ export declare function ConversationsAiAxiosParamCreator_GetConversationsApiV1Ai
|
|
|
2282
2265
|
* @throws {RequiredError}
|
|
2283
2266
|
*/
|
|
2284
2267
|
export declare function ConversationsAiAxiosParamCreator_PatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatch(workspaceId: string, conversationId: string, aiConversationUpdateRequest: AiConversationUpdateRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2268
|
+
/**
|
|
2269
|
+
* Re-points the conversation\'s dashboard at the metadata object the user saved.
|
|
2270
|
+
* @summary Link a saved dashboard
|
|
2271
|
+
* @param {string} workspaceId
|
|
2272
|
+
* @param {string} conversationId
|
|
2273
|
+
* @param {string} dashboardId
|
|
2274
|
+
* @param {AiDashboardIdUpdateRequest} aiDashboardIdUpdateRequest
|
|
2275
|
+
* @param {*} [options] Override http request option.
|
|
2276
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2277
|
+
* @throws {RequiredError}
|
|
2278
|
+
*/
|
|
2279
|
+
export declare function ConversationsAiAxiosParamCreator_PatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch(workspaceId: string, conversationId: string, dashboardId: string, aiDashboardIdUpdateRequest: AiDashboardIdUpdateRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2280
|
+
/**
|
|
2281
|
+
* Attaches positive or negative feedback, with optional free-text, to one response.
|
|
2282
|
+
* @summary Rate a response
|
|
2283
|
+
* @param {string} workspaceId
|
|
2284
|
+
* @param {string} conversationId
|
|
2285
|
+
* @param {string} responseId
|
|
2286
|
+
* @param {AiResponseFeedbackRequest} aiResponseFeedbackRequest
|
|
2287
|
+
* @param {*} [options] Override http request option.
|
|
2288
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2289
|
+
* @throws {RequiredError}
|
|
2290
|
+
*/
|
|
2291
|
+
export declare function ConversationsAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2292
|
+
/**
|
|
2293
|
+
* Re-points the conversation\'s visualization at the metadata object the user saved.
|
|
2294
|
+
* @summary Link a saved visualization
|
|
2295
|
+
* @param {string} workspaceId
|
|
2296
|
+
* @param {string} conversationId
|
|
2297
|
+
* @param {string} visualizationId
|
|
2298
|
+
* @param {AiVisualizationIdUpdateRequest} aiVisualizationIdUpdateRequest
|
|
2299
|
+
* @param {*} [options] Override http request option.
|
|
2300
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2301
|
+
* @throws {RequiredError}
|
|
2302
|
+
*/
|
|
2303
|
+
export declare function ConversationsAiAxiosParamCreator_PatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(workspaceId: string, conversationId: string, visualizationId: string, aiVisualizationIdUpdateRequest: AiVisualizationIdUpdateRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2285
2304
|
/**
|
|
2286
2305
|
*
|
|
2287
|
-
* @summary
|
|
2306
|
+
* @summary Start a conversation
|
|
2288
2307
|
* @param {string} workspaceId
|
|
2289
2308
|
* @param {boolean} [isPreview]
|
|
2290
2309
|
* @param {AiCreateConversationRequest} [aiCreateConversationRequest]
|
|
@@ -2295,7 +2314,18 @@ export declare function ConversationsAiAxiosParamCreator_PatchConversationApiV1A
|
|
|
2295
2314
|
export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, isPreview?: boolean, aiCreateConversationRequest?: AiCreateConversationRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2296
2315
|
/**
|
|
2297
2316
|
*
|
|
2298
|
-
* @summary
|
|
2317
|
+
* @summary Submit feedback
|
|
2318
|
+
* @param {string} workspaceId
|
|
2319
|
+
* @param {string} conversationId
|
|
2320
|
+
* @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
|
|
2321
|
+
* @param {*} [options] Override http request option.
|
|
2322
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2323
|
+
* @throws {RequiredError}
|
|
2324
|
+
*/
|
|
2325
|
+
export declare function ConversationsAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2326
|
+
/**
|
|
2327
|
+
* Derives a title for the conversation from the messages exchanged so far.
|
|
2328
|
+
* @summary Generate a title
|
|
2299
2329
|
* @param {string} workspaceId
|
|
2300
2330
|
* @param {string} conversationId
|
|
2301
2331
|
* @param {*} [options] Override http request option.
|
|
@@ -2304,8 +2334,19 @@ export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1A
|
|
|
2304
2334
|
*/
|
|
2305
2335
|
export declare function ConversationsAiAxiosParamCreator_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2306
2336
|
/**
|
|
2307
|
-
*
|
|
2308
|
-
* @summary
|
|
2337
|
+
* Streams the agent\'s reply back over SSE; see the 200 response for the event sequence.
|
|
2338
|
+
* @summary Send a message
|
|
2339
|
+
* @param {string} workspaceId
|
|
2340
|
+
* @param {string} conversationId
|
|
2341
|
+
* @param {AiSendMessageRequest} aiSendMessageRequest
|
|
2342
|
+
* @param {*} [options] Override http request option.
|
|
2343
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2344
|
+
* @throws {RequiredError}
|
|
2345
|
+
*/
|
|
2346
|
+
export declare function ConversationsAiAxiosParamCreator_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(workspaceId: string, conversationId: string, aiSendMessageRequest: AiSendMessageRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2347
|
+
/**
|
|
2348
|
+
* Changes the active agent on an existing conversation.
|
|
2349
|
+
* @summary Switch agent
|
|
2309
2350
|
* @param {string} workspaceId
|
|
2310
2351
|
* @param {string} conversationId
|
|
2311
2352
|
* @param {AiSwitchAgentRequest} aiSwitchAgentRequest
|
|
@@ -2316,7 +2357,7 @@ export declare function ConversationsAiAxiosParamCreator_PostGenerateConversatio
|
|
|
2316
2357
|
export declare function ConversationsAiAxiosParamCreator_SwitchAgent(workspaceId: string, conversationId: string, aiSwitchAgentRequest: AiSwitchAgentRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2317
2358
|
/**
|
|
2318
2359
|
*
|
|
2319
|
-
* @summary Delete
|
|
2360
|
+
* @summary Delete a conversation
|
|
2320
2361
|
* @param {AxiosInstance} axios Axios instance.
|
|
2321
2362
|
* @param {string} basePath Base path.
|
|
2322
2363
|
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
@@ -2327,7 +2368,7 @@ export declare function ConversationsAiAxiosParamCreator_SwitchAgent(workspaceId
|
|
|
2327
2368
|
export declare function ConversationsAi_DeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2328
2369
|
/**
|
|
2329
2370
|
*
|
|
2330
|
-
* @summary Get
|
|
2371
|
+
* @summary Get a conversation
|
|
2331
2372
|
* @param {AxiosInstance} axios Axios instance.
|
|
2332
2373
|
* @param {string} basePath Base path.
|
|
2333
2374
|
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
@@ -2336,9 +2377,42 @@ export declare function ConversationsAi_DeleteConversationApiV1AiWorkspacesWorks
|
|
|
2336
2377
|
* @throws {RequiredError}
|
|
2337
2378
|
*/
|
|
2338
2379
|
export declare function ConversationsAi_GetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponse>;
|
|
2380
|
+
/**
|
|
2381
|
+
* The agent\'s interaction steps, available when interaction intelligence is enabled.
|
|
2382
|
+
* @summary List reasoning steps
|
|
2383
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2384
|
+
* @param {string} basePath Base path.
|
|
2385
|
+
* @param {ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
|
|
2386
|
+
* @param {*} [options] Override http request option.
|
|
2387
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2388
|
+
* @throws {RequiredError}
|
|
2389
|
+
*/
|
|
2390
|
+
export declare function ConversationsAi_GetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiInteractionStepListResponse>;
|
|
2391
|
+
/**
|
|
2392
|
+
* Items in the order the agent produced them: text, visualizations, dashboards.
|
|
2393
|
+
* @summary List conversation items
|
|
2394
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2395
|
+
* @param {string} basePath Base path.
|
|
2396
|
+
* @param {ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
2397
|
+
* @param {*} [options] Override http request option.
|
|
2398
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2399
|
+
* @throws {RequiredError}
|
|
2400
|
+
*/
|
|
2401
|
+
export declare function ConversationsAi_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationItemListResponse>;
|
|
2339
2402
|
/**
|
|
2340
2403
|
*
|
|
2341
|
-
* @summary
|
|
2404
|
+
* @summary List responses
|
|
2405
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2406
|
+
* @param {string} basePath Base path.
|
|
2407
|
+
* @param {ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
2408
|
+
* @param {*} [options] Override http request option.
|
|
2409
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2410
|
+
* @throws {RequiredError}
|
|
2411
|
+
*/
|
|
2412
|
+
export declare function ConversationsAi_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponseList>;
|
|
2413
|
+
/**
|
|
2414
|
+
* Conversations belonging to the current user in this workspace.
|
|
2415
|
+
* @summary List conversations
|
|
2342
2416
|
* @param {AxiosInstance} axios Axios instance.
|
|
2343
2417
|
* @param {string} basePath Base path.
|
|
2344
2418
|
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
@@ -2348,8 +2422,8 @@ export declare function ConversationsAi_GetConversationApiV1AiWorkspacesWorkspac
|
|
|
2348
2422
|
*/
|
|
2349
2423
|
export declare function ConversationsAi_GetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationListResponse>;
|
|
2350
2424
|
/**
|
|
2351
|
-
*
|
|
2352
|
-
* @summary
|
|
2425
|
+
* Only the title and the pinned flag can be changed.
|
|
2426
|
+
* @summary Update a conversation
|
|
2353
2427
|
* @param {AxiosInstance} axios Axios instance.
|
|
2354
2428
|
* @param {string} basePath Base path.
|
|
2355
2429
|
* @param {ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest} requestParameters Request parameters.
|
|
@@ -2358,9 +2432,42 @@ export declare function ConversationsAi_GetConversationsApiV1AiWorkspacesWorkspa
|
|
|
2358
2432
|
* @throws {RequiredError}
|
|
2359
2433
|
*/
|
|
2360
2434
|
export declare function ConversationsAi_PatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponse>;
|
|
2435
|
+
/**
|
|
2436
|
+
* Re-points the conversation\'s dashboard at the metadata object the user saved.
|
|
2437
|
+
* @summary Link a saved dashboard
|
|
2438
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2439
|
+
* @param {string} basePath Base path.
|
|
2440
|
+
* @param {ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest} requestParameters Request parameters.
|
|
2441
|
+
* @param {*} [options] Override http request option.
|
|
2442
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2443
|
+
* @throws {RequiredError}
|
|
2444
|
+
*/
|
|
2445
|
+
export declare function ConversationsAi_PatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2446
|
+
/**
|
|
2447
|
+
* Attaches positive or negative feedback, with optional free-text, to one response.
|
|
2448
|
+
* @summary Rate a response
|
|
2449
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2450
|
+
* @param {string} basePath Base path.
|
|
2451
|
+
* @param {ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
2452
|
+
* @param {*} [options] Override http request option.
|
|
2453
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2454
|
+
* @throws {RequiredError}
|
|
2455
|
+
*/
|
|
2456
|
+
export declare function ConversationsAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2457
|
+
/**
|
|
2458
|
+
* Re-points the conversation\'s visualization at the metadata object the user saved.
|
|
2459
|
+
* @summary Link a saved visualization
|
|
2460
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2461
|
+
* @param {string} basePath Base path.
|
|
2462
|
+
* @param {ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
2463
|
+
* @param {*} [options] Override http request option.
|
|
2464
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2465
|
+
* @throws {RequiredError}
|
|
2466
|
+
*/
|
|
2467
|
+
export declare function ConversationsAi_PatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2361
2468
|
/**
|
|
2362
2469
|
*
|
|
2363
|
-
* @summary
|
|
2470
|
+
* @summary Start a conversation
|
|
2364
2471
|
* @param {AxiosInstance} axios Axios instance.
|
|
2365
2472
|
* @param {string} basePath Base path.
|
|
2366
2473
|
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
@@ -2371,7 +2478,18 @@ export declare function ConversationsAi_PatchConversationApiV1AiWorkspacesWorksp
|
|
|
2371
2478
|
export declare function ConversationsAi_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponse>;
|
|
2372
2479
|
/**
|
|
2373
2480
|
*
|
|
2374
|
-
* @summary
|
|
2481
|
+
* @summary Submit feedback
|
|
2482
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2483
|
+
* @param {string} basePath Base path.
|
|
2484
|
+
* @param {ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
2485
|
+
* @param {*} [options] Override http request option.
|
|
2486
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2487
|
+
* @throws {RequiredError}
|
|
2488
|
+
*/
|
|
2489
|
+
export declare function ConversationsAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
2490
|
+
/**
|
|
2491
|
+
* Derives a title for the conversation from the messages exchanged so far.
|
|
2492
|
+
* @summary Generate a title
|
|
2375
2493
|
* @param {AxiosInstance} axios Axios instance.
|
|
2376
2494
|
* @param {string} basePath Base path.
|
|
2377
2495
|
* @param {ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest} requestParameters Request parameters.
|
|
@@ -2381,8 +2499,19 @@ export declare function ConversationsAi_PostConversationsApiV1AiWorkspacesWorksp
|
|
|
2381
2499
|
*/
|
|
2382
2500
|
export declare function ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponse>;
|
|
2383
2501
|
/**
|
|
2384
|
-
*
|
|
2385
|
-
* @summary
|
|
2502
|
+
* Streams the agent\'s reply back over SSE; see the 200 response for the event sequence.
|
|
2503
|
+
* @summary Send a message
|
|
2504
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2505
|
+
* @param {string} basePath Base path.
|
|
2506
|
+
* @param {ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
2507
|
+
* @param {*} [options] Override http request option.
|
|
2508
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2509
|
+
* @throws {RequiredError}
|
|
2510
|
+
*/
|
|
2511
|
+
export declare function ConversationsAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<string>;
|
|
2512
|
+
/**
|
|
2513
|
+
* Changes the active agent on an existing conversation.
|
|
2514
|
+
* @summary Switch agent
|
|
2386
2515
|
* @param {AxiosInstance} axios Axios instance.
|
|
2387
2516
|
* @param {string} basePath Base path.
|
|
2388
2517
|
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
@@ -2399,7 +2528,7 @@ export declare function ConversationsAi_SwitchAgent(axios: AxiosInstance, basePa
|
|
|
2399
2528
|
export interface ConversationsAiInterface {
|
|
2400
2529
|
/**
|
|
2401
2530
|
*
|
|
2402
|
-
* @summary Delete
|
|
2531
|
+
* @summary Delete a conversation
|
|
2403
2532
|
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
2404
2533
|
* @param {*} [options] Override http request option.
|
|
2405
2534
|
* @throws {RequiredError}
|
|
@@ -2408,16 +2537,43 @@ export interface ConversationsAiInterface {
|
|
|
2408
2537
|
deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2409
2538
|
/**
|
|
2410
2539
|
*
|
|
2411
|
-
* @summary Get
|
|
2540
|
+
* @summary Get a conversation
|
|
2412
2541
|
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
2413
2542
|
* @param {*} [options] Override http request option.
|
|
2414
2543
|
* @throws {RequiredError}
|
|
2415
2544
|
* @memberof ConversationsAiInterface
|
|
2416
2545
|
*/
|
|
2417
2546
|
getConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2547
|
+
/**
|
|
2548
|
+
* The agent\'s interaction steps, available when interaction intelligence is enabled.
|
|
2549
|
+
* @summary List reasoning steps
|
|
2550
|
+
* @param {ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
|
|
2551
|
+
* @param {*} [options] Override http request option.
|
|
2552
|
+
* @throws {RequiredError}
|
|
2553
|
+
* @memberof ConversationsAiInterface
|
|
2554
|
+
*/
|
|
2555
|
+
getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
|
|
2556
|
+
/**
|
|
2557
|
+
* Items in the order the agent produced them: text, visualizations, dashboards.
|
|
2558
|
+
* @summary List conversation items
|
|
2559
|
+
* @param {ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
2560
|
+
* @param {*} [options] Override http request option.
|
|
2561
|
+
* @throws {RequiredError}
|
|
2562
|
+
* @memberof ConversationsAiInterface
|
|
2563
|
+
*/
|
|
2564
|
+
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponse>;
|
|
2418
2565
|
/**
|
|
2419
2566
|
*
|
|
2420
|
-
* @summary
|
|
2567
|
+
* @summary List responses
|
|
2568
|
+
* @param {ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
2569
|
+
* @param {*} [options] Override http request option.
|
|
2570
|
+
* @throws {RequiredError}
|
|
2571
|
+
* @memberof ConversationsAiInterface
|
|
2572
|
+
*/
|
|
2573
|
+
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseList>;
|
|
2574
|
+
/**
|
|
2575
|
+
* Conversations belonging to the current user in this workspace.
|
|
2576
|
+
* @summary List conversations
|
|
2421
2577
|
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
2422
2578
|
* @param {*} [options] Override http request option.
|
|
2423
2579
|
* @throws {RequiredError}
|
|
@@ -2425,17 +2581,44 @@ export interface ConversationsAiInterface {
|
|
|
2425
2581
|
*/
|
|
2426
2582
|
getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationListResponse>;
|
|
2427
2583
|
/**
|
|
2428
|
-
*
|
|
2429
|
-
* @summary
|
|
2584
|
+
* Only the title and the pinned flag can be changed.
|
|
2585
|
+
* @summary Update a conversation
|
|
2430
2586
|
* @param {ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest} requestParameters Request parameters.
|
|
2431
2587
|
* @param {*} [options] Override http request option.
|
|
2432
2588
|
* @throws {RequiredError}
|
|
2433
2589
|
* @memberof ConversationsAiInterface
|
|
2434
2590
|
*/
|
|
2435
2591
|
patchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatch(requestParameters: ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2592
|
+
/**
|
|
2593
|
+
* Re-points the conversation\'s dashboard at the metadata object the user saved.
|
|
2594
|
+
* @summary Link a saved dashboard
|
|
2595
|
+
* @param {ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest} requestParameters Request parameters.
|
|
2596
|
+
* @param {*} [options] Override http request option.
|
|
2597
|
+
* @throws {RequiredError}
|
|
2598
|
+
* @memberof ConversationsAiInterface
|
|
2599
|
+
*/
|
|
2600
|
+
patchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch(requestParameters: ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2601
|
+
/**
|
|
2602
|
+
* Attaches positive or negative feedback, with optional free-text, to one response.
|
|
2603
|
+
* @summary Rate a response
|
|
2604
|
+
* @param {ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
2605
|
+
* @param {*} [options] Override http request option.
|
|
2606
|
+
* @throws {RequiredError}
|
|
2607
|
+
* @memberof ConversationsAiInterface
|
|
2608
|
+
*/
|
|
2609
|
+
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2610
|
+
/**
|
|
2611
|
+
* Re-points the conversation\'s visualization at the metadata object the user saved.
|
|
2612
|
+
* @summary Link a saved visualization
|
|
2613
|
+
* @param {ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
2614
|
+
* @param {*} [options] Override http request option.
|
|
2615
|
+
* @throws {RequiredError}
|
|
2616
|
+
* @memberof ConversationsAiInterface
|
|
2617
|
+
*/
|
|
2618
|
+
patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(requestParameters: ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2436
2619
|
/**
|
|
2437
2620
|
*
|
|
2438
|
-
* @summary
|
|
2621
|
+
* @summary Start a conversation
|
|
2439
2622
|
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
2440
2623
|
* @param {*} [options] Override http request option.
|
|
2441
2624
|
* @throws {RequiredError}
|
|
@@ -2444,7 +2627,16 @@ export interface ConversationsAiInterface {
|
|
|
2444
2627
|
postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2445
2628
|
/**
|
|
2446
2629
|
*
|
|
2447
|
-
* @summary
|
|
2630
|
+
* @summary Submit feedback
|
|
2631
|
+
* @param {ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
2632
|
+
* @param {*} [options] Override http request option.
|
|
2633
|
+
* @throws {RequiredError}
|
|
2634
|
+
* @memberof ConversationsAiInterface
|
|
2635
|
+
*/
|
|
2636
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2637
|
+
/**
|
|
2638
|
+
* Derives a title for the conversation from the messages exchanged so far.
|
|
2639
|
+
* @summary Generate a title
|
|
2448
2640
|
* @param {ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest} requestParameters Request parameters.
|
|
2449
2641
|
* @param {*} [options] Override http request option.
|
|
2450
2642
|
* @throws {RequiredError}
|
|
@@ -2452,8 +2644,17 @@ export interface ConversationsAiInterface {
|
|
|
2452
2644
|
*/
|
|
2453
2645
|
postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2454
2646
|
/**
|
|
2455
|
-
*
|
|
2456
|
-
* @summary
|
|
2647
|
+
* Streams the agent\'s reply back over SSE; see the 200 response for the event sequence.
|
|
2648
|
+
* @summary Send a message
|
|
2649
|
+
* @param {ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
2650
|
+
* @param {*} [options] Override http request option.
|
|
2651
|
+
* @throws {RequiredError}
|
|
2652
|
+
* @memberof ConversationsAiInterface
|
|
2653
|
+
*/
|
|
2654
|
+
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
|
|
2655
|
+
/**
|
|
2656
|
+
* Changes the active agent on an existing conversation.
|
|
2657
|
+
* @summary Switch agent
|
|
2457
2658
|
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
2458
2659
|
* @param {*} [options] Override http request option.
|
|
2459
2660
|
* @throws {RequiredError}
|
|
@@ -2500,9 +2701,72 @@ export interface ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatC
|
|
|
2500
2701
|
readonly conversationId: string;
|
|
2501
2702
|
}
|
|
2502
2703
|
/**
|
|
2503
|
-
* Request parameters for
|
|
2704
|
+
* Request parameters for getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet operation in ConversationsAi.
|
|
2504
2705
|
* @export
|
|
2505
|
-
* @interface
|
|
2706
|
+
* @interface ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest
|
|
2707
|
+
*/
|
|
2708
|
+
export interface ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest {
|
|
2709
|
+
/**
|
|
2710
|
+
*
|
|
2711
|
+
* @type {string}
|
|
2712
|
+
* @memberof ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2713
|
+
*/
|
|
2714
|
+
readonly workspaceId: string;
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
* @type {string}
|
|
2718
|
+
* @memberof ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2719
|
+
*/
|
|
2720
|
+
readonly conversationId: string;
|
|
2721
|
+
/**
|
|
2722
|
+
*
|
|
2723
|
+
* @type {string}
|
|
2724
|
+
* @memberof ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2725
|
+
*/
|
|
2726
|
+
readonly responseId?: string;
|
|
2727
|
+
}
|
|
2728
|
+
/**
|
|
2729
|
+
* Request parameters for getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet operation in ConversationsAi.
|
|
2730
|
+
* @export
|
|
2731
|
+
* @interface ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest
|
|
2732
|
+
*/
|
|
2733
|
+
export interface ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest {
|
|
2734
|
+
/**
|
|
2735
|
+
*
|
|
2736
|
+
* @type {string}
|
|
2737
|
+
* @memberof ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
2738
|
+
*/
|
|
2739
|
+
readonly workspaceId: string;
|
|
2740
|
+
/**
|
|
2741
|
+
*
|
|
2742
|
+
* @type {string}
|
|
2743
|
+
* @memberof ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
2744
|
+
*/
|
|
2745
|
+
readonly conversationId: string;
|
|
2746
|
+
}
|
|
2747
|
+
/**
|
|
2748
|
+
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ConversationsAi.
|
|
2749
|
+
* @export
|
|
2750
|
+
* @interface ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest
|
|
2751
|
+
*/
|
|
2752
|
+
export interface ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest {
|
|
2753
|
+
/**
|
|
2754
|
+
*
|
|
2755
|
+
* @type {string}
|
|
2756
|
+
* @memberof ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
2757
|
+
*/
|
|
2758
|
+
readonly workspaceId: string;
|
|
2759
|
+
/**
|
|
2760
|
+
*
|
|
2761
|
+
* @type {string}
|
|
2762
|
+
* @memberof ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
2763
|
+
*/
|
|
2764
|
+
readonly conversationId: string;
|
|
2765
|
+
}
|
|
2766
|
+
/**
|
|
2767
|
+
* Request parameters for getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet operation in ConversationsAi.
|
|
2768
|
+
* @export
|
|
2769
|
+
* @interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest
|
|
2506
2770
|
*/
|
|
2507
2771
|
export interface ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest {
|
|
2508
2772
|
/**
|
|
@@ -2555,6 +2819,99 @@ export interface ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdCha
|
|
|
2555
2819
|
*/
|
|
2556
2820
|
readonly aiConversationUpdateRequest: AiConversationUpdateRequest;
|
|
2557
2821
|
}
|
|
2822
|
+
/**
|
|
2823
|
+
* Request parameters for patchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch operation in ConversationsAi.
|
|
2824
|
+
* @export
|
|
2825
|
+
* @interface ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest
|
|
2826
|
+
*/
|
|
2827
|
+
export interface ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest {
|
|
2828
|
+
/**
|
|
2829
|
+
*
|
|
2830
|
+
* @type {string}
|
|
2831
|
+
* @memberof ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
2832
|
+
*/
|
|
2833
|
+
readonly workspaceId: string;
|
|
2834
|
+
/**
|
|
2835
|
+
*
|
|
2836
|
+
* @type {string}
|
|
2837
|
+
* @memberof ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
2838
|
+
*/
|
|
2839
|
+
readonly conversationId: string;
|
|
2840
|
+
/**
|
|
2841
|
+
*
|
|
2842
|
+
* @type {string}
|
|
2843
|
+
* @memberof ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
2844
|
+
*/
|
|
2845
|
+
readonly dashboardId: string;
|
|
2846
|
+
/**
|
|
2847
|
+
*
|
|
2848
|
+
* @type {AiDashboardIdUpdateRequest}
|
|
2849
|
+
* @memberof ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
2850
|
+
*/
|
|
2851
|
+
readonly aiDashboardIdUpdateRequest: AiDashboardIdUpdateRequest;
|
|
2852
|
+
}
|
|
2853
|
+
/**
|
|
2854
|
+
* Request parameters for patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch operation in ConversationsAi.
|
|
2855
|
+
* @export
|
|
2856
|
+
* @interface ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest
|
|
2857
|
+
*/
|
|
2858
|
+
export interface ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest {
|
|
2859
|
+
/**
|
|
2860
|
+
*
|
|
2861
|
+
* @type {string}
|
|
2862
|
+
* @memberof ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
2863
|
+
*/
|
|
2864
|
+
readonly workspaceId: string;
|
|
2865
|
+
/**
|
|
2866
|
+
*
|
|
2867
|
+
* @type {string}
|
|
2868
|
+
* @memberof ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
2869
|
+
*/
|
|
2870
|
+
readonly conversationId: string;
|
|
2871
|
+
/**
|
|
2872
|
+
*
|
|
2873
|
+
* @type {string}
|
|
2874
|
+
* @memberof ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
2875
|
+
*/
|
|
2876
|
+
readonly responseId: string;
|
|
2877
|
+
/**
|
|
2878
|
+
*
|
|
2879
|
+
* @type {AiResponseFeedbackRequest}
|
|
2880
|
+
* @memberof ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
2881
|
+
*/
|
|
2882
|
+
readonly aiResponseFeedbackRequest: AiResponseFeedbackRequest;
|
|
2883
|
+
}
|
|
2884
|
+
/**
|
|
2885
|
+
* Request parameters for patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch operation in ConversationsAi.
|
|
2886
|
+
* @export
|
|
2887
|
+
* @interface ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest
|
|
2888
|
+
*/
|
|
2889
|
+
export interface ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest {
|
|
2890
|
+
/**
|
|
2891
|
+
*
|
|
2892
|
+
* @type {string}
|
|
2893
|
+
* @memberof ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
2894
|
+
*/
|
|
2895
|
+
readonly workspaceId: string;
|
|
2896
|
+
/**
|
|
2897
|
+
*
|
|
2898
|
+
* @type {string}
|
|
2899
|
+
* @memberof ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
2900
|
+
*/
|
|
2901
|
+
readonly conversationId: string;
|
|
2902
|
+
/**
|
|
2903
|
+
*
|
|
2904
|
+
* @type {string}
|
|
2905
|
+
* @memberof ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
2906
|
+
*/
|
|
2907
|
+
readonly visualizationId: string;
|
|
2908
|
+
/**
|
|
2909
|
+
*
|
|
2910
|
+
* @type {AiVisualizationIdUpdateRequest}
|
|
2911
|
+
* @memberof ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
2912
|
+
*/
|
|
2913
|
+
readonly aiVisualizationIdUpdateRequest: AiVisualizationIdUpdateRequest;
|
|
2914
|
+
}
|
|
2558
2915
|
/**
|
|
2559
2916
|
* Request parameters for postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost operation in ConversationsAi.
|
|
2560
2917
|
* @export
|
|
@@ -2580,6 +2937,31 @@ export interface ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdCha
|
|
|
2580
2937
|
*/
|
|
2581
2938
|
readonly aiCreateConversationRequest?: AiCreateConversationRequest;
|
|
2582
2939
|
}
|
|
2940
|
+
/**
|
|
2941
|
+
* Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ConversationsAi.
|
|
2942
|
+
* @export
|
|
2943
|
+
* @interface ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
|
|
2944
|
+
*/
|
|
2945
|
+
export interface ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
|
|
2946
|
+
/**
|
|
2947
|
+
*
|
|
2948
|
+
* @type {string}
|
|
2949
|
+
* @memberof ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
2950
|
+
*/
|
|
2951
|
+
readonly workspaceId: string;
|
|
2952
|
+
/**
|
|
2953
|
+
*
|
|
2954
|
+
* @type {string}
|
|
2955
|
+
* @memberof ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
2956
|
+
*/
|
|
2957
|
+
readonly conversationId: string;
|
|
2958
|
+
/**
|
|
2959
|
+
*
|
|
2960
|
+
* @type {AiConversationFeedbackRequest}
|
|
2961
|
+
* @memberof ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
2962
|
+
*/
|
|
2963
|
+
readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
|
|
2964
|
+
}
|
|
2583
2965
|
/**
|
|
2584
2966
|
* Request parameters for postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost operation in ConversationsAi.
|
|
2585
2967
|
* @export
|
|
@@ -2599,6 +2981,31 @@ export interface ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWo
|
|
|
2599
2981
|
*/
|
|
2600
2982
|
readonly conversationId: string;
|
|
2601
2983
|
}
|
|
2984
|
+
/**
|
|
2985
|
+
* Request parameters for postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost operation in ConversationsAi.
|
|
2986
|
+
* @export
|
|
2987
|
+
* @interface ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest
|
|
2988
|
+
*/
|
|
2989
|
+
export interface ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest {
|
|
2990
|
+
/**
|
|
2991
|
+
*
|
|
2992
|
+
* @type {string}
|
|
2993
|
+
* @memberof ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
2994
|
+
*/
|
|
2995
|
+
readonly workspaceId: string;
|
|
2996
|
+
/**
|
|
2997
|
+
*
|
|
2998
|
+
* @type {string}
|
|
2999
|
+
* @memberof ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
3000
|
+
*/
|
|
3001
|
+
readonly conversationId: string;
|
|
3002
|
+
/**
|
|
3003
|
+
*
|
|
3004
|
+
* @type {AiSendMessageRequest}
|
|
3005
|
+
* @memberof ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
3006
|
+
*/
|
|
3007
|
+
readonly aiSendMessageRequest: AiSendMessageRequest;
|
|
3008
|
+
}
|
|
2602
3009
|
/**
|
|
2603
3010
|
* Request parameters for switchAgent operation in ConversationsAi.
|
|
2604
3011
|
* @export
|
|
@@ -2633,7 +3040,7 @@ export interface ConversationsAiSwitchAgentRequest {
|
|
|
2633
3040
|
export declare class ConversationsAi extends BaseAPI implements ConversationsAiInterface {
|
|
2634
3041
|
/**
|
|
2635
3042
|
*
|
|
2636
|
-
* @summary Delete
|
|
3043
|
+
* @summary Delete a conversation
|
|
2637
3044
|
* @param {ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest} requestParameters Request parameters.
|
|
2638
3045
|
* @param {*} [options] Override http request option.
|
|
2639
3046
|
* @throws {RequiredError}
|
|
@@ -2642,16 +3049,43 @@ export declare class ConversationsAi extends BaseAPI implements ConversationsAiI
|
|
|
2642
3049
|
deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete(requestParameters: ConversationsAiDeleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDeleteRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2643
3050
|
/**
|
|
2644
3051
|
*
|
|
2645
|
-
* @summary Get
|
|
3052
|
+
* @summary Get a conversation
|
|
2646
3053
|
* @param {ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest} requestParameters Request parameters.
|
|
2647
3054
|
* @param {*} [options] Override http request option.
|
|
2648
3055
|
* @throws {RequiredError}
|
|
2649
3056
|
* @memberof ConversationsAi
|
|
2650
3057
|
*/
|
|
2651
3058
|
getConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGet(requestParameters: ConversationsAiGetConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
3059
|
+
/**
|
|
3060
|
+
* The agent\'s interaction steps, available when interaction intelligence is enabled.
|
|
3061
|
+
* @summary List reasoning steps
|
|
3062
|
+
* @param {ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
|
|
3063
|
+
* @param {*} [options] Override http request option.
|
|
3064
|
+
* @throws {RequiredError}
|
|
3065
|
+
* @memberof ConversationsAi
|
|
3066
|
+
*/
|
|
3067
|
+
getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: ConversationsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
|
|
3068
|
+
/**
|
|
3069
|
+
* Items in the order the agent produced them: text, visualizations, dashboards.
|
|
3070
|
+
* @summary List conversation items
|
|
3071
|
+
* @param {ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
3072
|
+
* @param {*} [options] Override http request option.
|
|
3073
|
+
* @throws {RequiredError}
|
|
3074
|
+
* @memberof ConversationsAi
|
|
3075
|
+
*/
|
|
3076
|
+
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ConversationsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponse>;
|
|
2652
3077
|
/**
|
|
2653
3078
|
*
|
|
2654
|
-
* @summary
|
|
3079
|
+
* @summary List responses
|
|
3080
|
+
* @param {ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
3081
|
+
* @param {*} [options] Override http request option.
|
|
3082
|
+
* @throws {RequiredError}
|
|
3083
|
+
* @memberof ConversationsAi
|
|
3084
|
+
*/
|
|
3085
|
+
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ConversationsAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseList>;
|
|
3086
|
+
/**
|
|
3087
|
+
* Conversations belonging to the current user in this workspace.
|
|
3088
|
+
* @summary List conversations
|
|
2655
3089
|
* @param {ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest} requestParameters Request parameters.
|
|
2656
3090
|
* @param {*} [options] Override http request option.
|
|
2657
3091
|
* @throws {RequiredError}
|
|
@@ -2659,17 +3093,44 @@ export declare class ConversationsAi extends BaseAPI implements ConversationsAiI
|
|
|
2659
3093
|
*/
|
|
2660
3094
|
getConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGet(requestParameters: ConversationsAiGetConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationListResponse>;
|
|
2661
3095
|
/**
|
|
2662
|
-
*
|
|
2663
|
-
* @summary
|
|
3096
|
+
* Only the title and the pinned flag can be changed.
|
|
3097
|
+
* @summary Update a conversation
|
|
2664
3098
|
* @param {ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest} requestParameters Request parameters.
|
|
2665
3099
|
* @param {*} [options] Override http request option.
|
|
2666
3100
|
* @throws {RequiredError}
|
|
2667
3101
|
* @memberof ConversationsAi
|
|
2668
3102
|
*/
|
|
2669
3103
|
patchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatch(requestParameters: ConversationsAiPatchConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
3104
|
+
/**
|
|
3105
|
+
* Re-points the conversation\'s dashboard at the metadata object the user saved.
|
|
3106
|
+
* @summary Link a saved dashboard
|
|
3107
|
+
* @param {ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest} requestParameters Request parameters.
|
|
3108
|
+
* @param {*} [options] Override http request option.
|
|
3109
|
+
* @throws {RequiredError}
|
|
3110
|
+
* @memberof ConversationsAi
|
|
3111
|
+
*/
|
|
3112
|
+
patchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch(requestParameters: ConversationsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3113
|
+
/**
|
|
3114
|
+
* Attaches positive or negative feedback, with optional free-text, to one response.
|
|
3115
|
+
* @summary Rate a response
|
|
3116
|
+
* @param {ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
3117
|
+
* @param {*} [options] Override http request option.
|
|
3118
|
+
* @throws {RequiredError}
|
|
3119
|
+
* @memberof ConversationsAi
|
|
3120
|
+
*/
|
|
3121
|
+
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ConversationsAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3122
|
+
/**
|
|
3123
|
+
* Re-points the conversation\'s visualization at the metadata object the user saved.
|
|
3124
|
+
* @summary Link a saved visualization
|
|
3125
|
+
* @param {ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
3126
|
+
* @param {*} [options] Override http request option.
|
|
3127
|
+
* @throws {RequiredError}
|
|
3128
|
+
* @memberof ConversationsAi
|
|
3129
|
+
*/
|
|
3130
|
+
patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch(requestParameters: ConversationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2670
3131
|
/**
|
|
2671
3132
|
*
|
|
2672
|
-
* @summary
|
|
3133
|
+
* @summary Start a conversation
|
|
2673
3134
|
* @param {ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest} requestParameters Request parameters.
|
|
2674
3135
|
* @param {*} [options] Override http request option.
|
|
2675
3136
|
* @throws {RequiredError}
|
|
@@ -2678,7 +3139,16 @@ export declare class ConversationsAi extends BaseAPI implements ConversationsAiI
|
|
|
2678
3139
|
postConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(requestParameters: ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2679
3140
|
/**
|
|
2680
3141
|
*
|
|
2681
|
-
* @summary
|
|
3142
|
+
* @summary Submit feedback
|
|
3143
|
+
* @param {ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
3144
|
+
* @param {*} [options] Override http request option.
|
|
3145
|
+
* @throws {RequiredError}
|
|
3146
|
+
* @memberof ConversationsAi
|
|
3147
|
+
*/
|
|
3148
|
+
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ConversationsAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
3149
|
+
/**
|
|
3150
|
+
* Derives a title for the conversation from the messages exchanged so far.
|
|
3151
|
+
* @summary Generate a title
|
|
2682
3152
|
* @param {ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest} requestParameters Request parameters.
|
|
2683
3153
|
* @param {*} [options] Override http request option.
|
|
2684
3154
|
* @throws {RequiredError}
|
|
@@ -2686,8 +3156,17 @@ export declare class ConversationsAi extends BaseAPI implements ConversationsAiI
|
|
|
2686
3156
|
*/
|
|
2687
3157
|
postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2688
3158
|
/**
|
|
2689
|
-
*
|
|
2690
|
-
* @summary
|
|
3159
|
+
* Streams the agent\'s reply back over SSE; see the 200 response for the event sequence.
|
|
3160
|
+
* @summary Send a message
|
|
3161
|
+
* @param {ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
3162
|
+
* @param {*} [options] Override http request option.
|
|
3163
|
+
* @throws {RequiredError}
|
|
3164
|
+
* @memberof ConversationsAi
|
|
3165
|
+
*/
|
|
3166
|
+
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: ConversationsAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
|
|
3167
|
+
/**
|
|
3168
|
+
* Changes the active agent on an existing conversation.
|
|
3169
|
+
* @summary Switch agent
|
|
2691
3170
|
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
2692
3171
|
* @param {*} [options] Override http request option.
|
|
2693
3172
|
* @throws {RequiredError}
|
|
@@ -2696,268 +3175,101 @@ export declare class ConversationsAi extends BaseAPI implements ConversationsAiI
|
|
|
2696
3175
|
switchAgent(requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
2697
3176
|
}
|
|
2698
3177
|
/**
|
|
2699
|
-
*
|
|
2700
|
-
* @summary
|
|
3178
|
+
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
3179
|
+
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
2701
3180
|
* @param {string} workspaceId
|
|
2702
|
-
* @param {
|
|
2703
|
-
* @param {string} dashboardId
|
|
2704
|
-
* @param {AiDashboardIdUpdateRequest} aiDashboardIdUpdateRequest
|
|
3181
|
+
* @param {AiSummarizeRequest} aiSummarizeRequest
|
|
2705
3182
|
* @param {*} [options] Override http request option.
|
|
2706
3183
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2707
3184
|
* @throws {RequiredError}
|
|
2708
3185
|
*/
|
|
2709
|
-
export declare function
|
|
3186
|
+
export declare function DashboardSummaryAiAxiosParamCreator_SummarizeDashboard(workspaceId: string, aiSummarizeRequest: AiSummarizeRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2710
3187
|
/**
|
|
2711
|
-
*
|
|
2712
|
-
* @summary
|
|
3188
|
+
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
3189
|
+
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
2713
3190
|
* @param {AxiosInstance} axios Axios instance.
|
|
2714
3191
|
* @param {string} basePath Base path.
|
|
2715
|
-
* @param {
|
|
3192
|
+
* @param {DashboardSummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
2716
3193
|
* @param {*} [options] Override http request option.
|
|
2717
3194
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2718
3195
|
* @throws {RequiredError}
|
|
2719
3196
|
*/
|
|
2720
|
-
export declare function
|
|
3197
|
+
export declare function DashboardSummaryAi_SummarizeDashboard(axios: AxiosInstance, basePath: string, requestParameters: DashboardSummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiSummarizeResponse>;
|
|
2721
3198
|
/**
|
|
2722
|
-
*
|
|
3199
|
+
* DashboardSummaryAi - interface
|
|
2723
3200
|
* @export
|
|
2724
|
-
* @interface
|
|
3201
|
+
* @interface DashboardSummaryAi
|
|
2725
3202
|
*/
|
|
2726
|
-
export interface
|
|
3203
|
+
export interface DashboardSummaryAiInterface {
|
|
2727
3204
|
/**
|
|
2728
|
-
*
|
|
2729
|
-
* @summary
|
|
2730
|
-
* @param {
|
|
3205
|
+
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
3206
|
+
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
3207
|
+
* @param {DashboardSummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
2731
3208
|
* @param {*} [options] Override http request option.
|
|
2732
3209
|
* @throws {RequiredError}
|
|
2733
|
-
* @memberof
|
|
3210
|
+
* @memberof DashboardSummaryAiInterface
|
|
2734
3211
|
*/
|
|
2735
|
-
|
|
3212
|
+
summarizeDashboard(requestParameters: DashboardSummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig): AxiosPromise<AiSummarizeResponse>;
|
|
2736
3213
|
}
|
|
2737
3214
|
/**
|
|
2738
|
-
* Request parameters for
|
|
3215
|
+
* Request parameters for summarizeDashboard operation in DashboardSummaryAi.
|
|
2739
3216
|
* @export
|
|
2740
|
-
* @interface
|
|
3217
|
+
* @interface DashboardSummaryAiSummarizeDashboardRequest
|
|
2741
3218
|
*/
|
|
2742
|
-
export interface
|
|
3219
|
+
export interface DashboardSummaryAiSummarizeDashboardRequest {
|
|
2743
3220
|
/**
|
|
2744
3221
|
*
|
|
2745
3222
|
* @type {string}
|
|
2746
|
-
* @memberof
|
|
3223
|
+
* @memberof DashboardSummaryAiSummarizeDashboard
|
|
2747
3224
|
*/
|
|
2748
3225
|
readonly workspaceId: string;
|
|
2749
3226
|
/**
|
|
2750
3227
|
*
|
|
2751
|
-
* @type {
|
|
2752
|
-
* @memberof
|
|
2753
|
-
*/
|
|
2754
|
-
readonly conversationId: string;
|
|
2755
|
-
/**
|
|
2756
|
-
*
|
|
2757
|
-
* @type {string}
|
|
2758
|
-
* @memberof DashboardsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
2759
|
-
*/
|
|
2760
|
-
readonly dashboardId: string;
|
|
2761
|
-
/**
|
|
2762
|
-
*
|
|
2763
|
-
* @type {AiDashboardIdUpdateRequest}
|
|
2764
|
-
* @memberof DashboardsAiPatchDashboardApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDashboardsDashboardIdPatch
|
|
3228
|
+
* @type {AiSummarizeRequest}
|
|
3229
|
+
* @memberof DashboardSummaryAiSummarizeDashboard
|
|
2765
3230
|
*/
|
|
2766
|
-
readonly
|
|
3231
|
+
readonly aiSummarizeRequest: AiSummarizeRequest;
|
|
2767
3232
|
}
|
|
2768
3233
|
/**
|
|
2769
|
-
*
|
|
3234
|
+
* DashboardSummaryAi - object-oriented interface
|
|
2770
3235
|
* @export
|
|
2771
|
-
* @class
|
|
3236
|
+
* @class DashboardSummaryAi
|
|
2772
3237
|
* @extends {BaseAPI}
|
|
2773
3238
|
*/
|
|
2774
|
-
export declare class
|
|
3239
|
+
export declare class DashboardSummaryAi extends BaseAPI implements DashboardSummaryAiInterface {
|
|
2775
3240
|
/**
|
|
2776
|
-
*
|
|
2777
|
-
* @summary
|
|
2778
|
-
* @param {
|
|
3241
|
+
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
3242
|
+
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
3243
|
+
* @param {DashboardSummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
2779
3244
|
* @param {*} [options] Override http request option.
|
|
2780
3245
|
* @throws {RequiredError}
|
|
2781
|
-
* @memberof
|
|
3246
|
+
* @memberof DashboardSummaryAi
|
|
2782
3247
|
*/
|
|
2783
|
-
|
|
3248
|
+
summarizeDashboard(requestParameters: DashboardSummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig): AxiosPromise<AiSummarizeResponse>;
|
|
2784
3249
|
}
|
|
2785
3250
|
/**
|
|
2786
|
-
*
|
|
2787
|
-
* @summary
|
|
3251
|
+
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
3252
|
+
* @summary Upload Document
|
|
2788
3253
|
* @param {string} workspaceId
|
|
2789
|
-
* @param {
|
|
2790
|
-
* @param {string} [
|
|
3254
|
+
* @param {File} file
|
|
3255
|
+
* @param {Array<string>} [scopes]
|
|
3256
|
+
* @param {string} [title]
|
|
2791
3257
|
* @param {*} [options] Override http request option.
|
|
2792
3258
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2793
3259
|
* @throws {RequiredError}
|
|
2794
3260
|
*/
|
|
2795
|
-
export declare function
|
|
3261
|
+
export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId: string, file: File, scopes?: Array<string>, title?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2796
3262
|
/**
|
|
2797
|
-
*
|
|
2798
|
-
* @summary
|
|
2799
|
-
* @param {
|
|
2800
|
-
* @param {string}
|
|
2801
|
-
* @param {
|
|
3263
|
+
* Upload a new org-scoped knowledge document.
|
|
3264
|
+
* @summary Upload Document Org
|
|
3265
|
+
* @param {File} file
|
|
3266
|
+
* @param {Array<string>} [scopes]
|
|
3267
|
+
* @param {string} [title]
|
|
2802
3268
|
* @param {*} [options] Override http request option.
|
|
2803
3269
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2804
3270
|
* @throws {RequiredError}
|
|
2805
3271
|
*/
|
|
2806
|
-
export declare function
|
|
2807
|
-
/**
|
|
2808
|
-
* InteractionStepsAi - interface
|
|
2809
|
-
* @export
|
|
2810
|
-
* @interface InteractionStepsAi
|
|
2811
|
-
*/
|
|
2812
|
-
export interface InteractionStepsAiInterface {
|
|
2813
|
-
/**
|
|
2814
|
-
*
|
|
2815
|
-
* @summary Get Conversation Interaction Steps
|
|
2816
|
-
* @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
|
|
2817
|
-
* @param {*} [options] Override http request option.
|
|
2818
|
-
* @throws {RequiredError}
|
|
2819
|
-
* @memberof InteractionStepsAiInterface
|
|
2820
|
-
*/
|
|
2821
|
-
getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
|
|
2822
|
-
}
|
|
2823
|
-
/**
|
|
2824
|
-
* Request parameters for getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet operation in InteractionStepsAi.
|
|
2825
|
-
* @export
|
|
2826
|
-
* @interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest
|
|
2827
|
-
*/
|
|
2828
|
-
export interface InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest {
|
|
2829
|
-
/**
|
|
2830
|
-
*
|
|
2831
|
-
* @type {string}
|
|
2832
|
-
* @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2833
|
-
*/
|
|
2834
|
-
readonly workspaceId: string;
|
|
2835
|
-
/**
|
|
2836
|
-
*
|
|
2837
|
-
* @type {string}
|
|
2838
|
-
* @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2839
|
-
*/
|
|
2840
|
-
readonly conversationId: string;
|
|
2841
|
-
/**
|
|
2842
|
-
*
|
|
2843
|
-
* @type {string}
|
|
2844
|
-
* @memberof InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet
|
|
2845
|
-
*/
|
|
2846
|
-
readonly responseId?: string;
|
|
2847
|
-
}
|
|
2848
|
-
/**
|
|
2849
|
-
* InteractionStepsAi - object-oriented interface
|
|
2850
|
-
* @export
|
|
2851
|
-
* @class InteractionStepsAi
|
|
2852
|
-
* @extends {BaseAPI}
|
|
2853
|
-
*/
|
|
2854
|
-
export declare class InteractionStepsAi extends BaseAPI implements InteractionStepsAiInterface {
|
|
2855
|
-
/**
|
|
2856
|
-
*
|
|
2857
|
-
* @summary Get Conversation Interaction Steps
|
|
2858
|
-
* @param {InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest} requestParameters Request parameters.
|
|
2859
|
-
* @param {*} [options] Override http request option.
|
|
2860
|
-
* @throws {RequiredError}
|
|
2861
|
-
* @memberof InteractionStepsAi
|
|
2862
|
-
*/
|
|
2863
|
-
getConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGet(requestParameters: InteractionStepsAiGetConversationInteractionStepsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdStepsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiInteractionStepListResponse>;
|
|
2864
|
-
}
|
|
2865
|
-
/**
|
|
2866
|
-
*
|
|
2867
|
-
* @summary Get Conversation Items
|
|
2868
|
-
* @param {string} workspaceId
|
|
2869
|
-
* @param {string} conversationId
|
|
2870
|
-
* @param {*} [options] Override http request option.
|
|
2871
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2872
|
-
* @throws {RequiredError}
|
|
2873
|
-
*/
|
|
2874
|
-
export declare function ItemsAiAxiosParamCreator_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2875
|
-
/**
|
|
2876
|
-
*
|
|
2877
|
-
* @summary Get Conversation Items
|
|
2878
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
2879
|
-
* @param {string} basePath Base path.
|
|
2880
|
-
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
2881
|
-
* @param {*} [options] Override http request option.
|
|
2882
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2883
|
-
* @throws {RequiredError}
|
|
2884
|
-
*/
|
|
2885
|
-
export declare function ItemsAi_GetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(axios: AxiosInstance, basePath: string, requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationItemListResponse>;
|
|
2886
|
-
/**
|
|
2887
|
-
* ItemsAi - interface
|
|
2888
|
-
* @export
|
|
2889
|
-
* @interface ItemsAi
|
|
2890
|
-
*/
|
|
2891
|
-
export interface ItemsAiInterface {
|
|
2892
|
-
/**
|
|
2893
|
-
*
|
|
2894
|
-
* @summary Get Conversation Items
|
|
2895
|
-
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
2896
|
-
* @param {*} [options] Override http request option.
|
|
2897
|
-
* @throws {RequiredError}
|
|
2898
|
-
* @memberof ItemsAiInterface
|
|
2899
|
-
*/
|
|
2900
|
-
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponse>;
|
|
2901
|
-
}
|
|
2902
|
-
/**
|
|
2903
|
-
* Request parameters for getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet operation in ItemsAi.
|
|
2904
|
-
* @export
|
|
2905
|
-
* @interface ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest
|
|
2906
|
-
*/
|
|
2907
|
-
export interface ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest {
|
|
2908
|
-
/**
|
|
2909
|
-
*
|
|
2910
|
-
* @type {string}
|
|
2911
|
-
* @memberof ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
2912
|
-
*/
|
|
2913
|
-
readonly workspaceId: string;
|
|
2914
|
-
/**
|
|
2915
|
-
*
|
|
2916
|
-
* @type {string}
|
|
2917
|
-
* @memberof ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet
|
|
2918
|
-
*/
|
|
2919
|
-
readonly conversationId: string;
|
|
2920
|
-
}
|
|
2921
|
-
/**
|
|
2922
|
-
* ItemsAi - object-oriented interface
|
|
2923
|
-
* @export
|
|
2924
|
-
* @class ItemsAi
|
|
2925
|
-
* @extends {BaseAPI}
|
|
2926
|
-
*/
|
|
2927
|
-
export declare class ItemsAi extends BaseAPI implements ItemsAiInterface {
|
|
2928
|
-
/**
|
|
2929
|
-
*
|
|
2930
|
-
* @summary Get Conversation Items
|
|
2931
|
-
* @param {ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest} requestParameters Request parameters.
|
|
2932
|
-
* @param {*} [options] Override http request option.
|
|
2933
|
-
* @throws {RequiredError}
|
|
2934
|
-
* @memberof ItemsAi
|
|
2935
|
-
*/
|
|
2936
|
-
getConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGet(requestParameters: ItemsAiGetConversationItemsApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdItemsGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationItemListResponse>;
|
|
2937
|
-
}
|
|
2938
|
-
/**
|
|
2939
|
-
* Upload a new knowledge document. Returns 409 if filename already exists.
|
|
2940
|
-
* @summary Upload Document
|
|
2941
|
-
* @param {string} workspaceId
|
|
2942
|
-
* @param {File} file
|
|
2943
|
-
* @param {Array<string>} [scopes]
|
|
2944
|
-
* @param {string} [title]
|
|
2945
|
-
* @param {*} [options] Override http request option.
|
|
2946
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2947
|
-
* @throws {RequiredError}
|
|
2948
|
-
*/
|
|
2949
|
-
export declare function KnowledgeAiAxiosParamCreator_CreateDocument(workspaceId: string, file: File, scopes?: Array<string>, title?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2950
|
-
/**
|
|
2951
|
-
* Upload a new org-scoped knowledge document.
|
|
2952
|
-
* @summary Upload Document Org
|
|
2953
|
-
* @param {File} file
|
|
2954
|
-
* @param {Array<string>} [scopes]
|
|
2955
|
-
* @param {string} [title]
|
|
2956
|
-
* @param {*} [options] Override http request option.
|
|
2957
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
2958
|
-
* @throws {RequiredError}
|
|
2959
|
-
*/
|
|
2960
|
-
export declare function KnowledgeAiAxiosParamCreator_CreateOrgDocument(file: File, scopes?: Array<string>, title?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3272
|
+
export declare function KnowledgeAiAxiosParamCreator_CreateOrgDocument(file: File, scopes?: Array<string>, title?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2961
3273
|
/**
|
|
2962
3274
|
* Delete a knowledge document and all its chunks (local docs only).
|
|
2963
3275
|
* @summary Delete Document
|
|
@@ -4005,453 +4317,52 @@ export declare class KnowledgeAi extends BaseAPI implements KnowledgeAiInterface
|
|
|
4005
4317
|
upsertOrgDocument(requestParameters: KnowledgeAiUpsertOrgDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<AiUploadDocumentResponse>;
|
|
4006
4318
|
}
|
|
4007
4319
|
/**
|
|
4008
|
-
*
|
|
4009
|
-
* @summary
|
|
4010
|
-
* @param {string} workspaceId
|
|
4011
|
-
* @param {string} conversationId
|
|
4012
|
-
* @param {AiSendMessageRequest} aiSendMessageRequest
|
|
4013
|
-
* @param {*} [options] Override http request option.
|
|
4014
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4015
|
-
* @throws {RequiredError}
|
|
4016
|
-
*/
|
|
4017
|
-
export declare function MessagesAiAxiosParamCreator_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(workspaceId: string, conversationId: string, aiSendMessageRequest: AiSendMessageRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4018
|
-
/**
|
|
4019
|
-
*
|
|
4020
|
-
* @summary Post Messages
|
|
4021
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4022
|
-
* @param {string} basePath Base path.
|
|
4023
|
-
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
4024
|
-
* @param {*} [options] Override http request option.
|
|
4025
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4026
|
-
* @throws {RequiredError}
|
|
4027
|
-
*/
|
|
4028
|
-
export declare function MessagesAi_PostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(axios: AxiosInstance, basePath: string, requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<string>;
|
|
4029
|
-
/**
|
|
4030
|
-
* MessagesAi - interface
|
|
4031
|
-
* @export
|
|
4032
|
-
* @interface MessagesAi
|
|
4033
|
-
*/
|
|
4034
|
-
export interface MessagesAiInterface {
|
|
4035
|
-
/**
|
|
4036
|
-
*
|
|
4037
|
-
* @summary Post Messages
|
|
4038
|
-
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
4039
|
-
* @param {*} [options] Override http request option.
|
|
4040
|
-
* @throws {RequiredError}
|
|
4041
|
-
* @memberof MessagesAiInterface
|
|
4042
|
-
*/
|
|
4043
|
-
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
|
|
4044
|
-
}
|
|
4045
|
-
/**
|
|
4046
|
-
* Request parameters for postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost operation in MessagesAi.
|
|
4047
|
-
* @export
|
|
4048
|
-
* @interface MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest
|
|
4049
|
-
*/
|
|
4050
|
-
export interface MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest {
|
|
4051
|
-
/**
|
|
4052
|
-
*
|
|
4053
|
-
* @type {string}
|
|
4054
|
-
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
4055
|
-
*/
|
|
4056
|
-
readonly workspaceId: string;
|
|
4057
|
-
/**
|
|
4058
|
-
*
|
|
4059
|
-
* @type {string}
|
|
4060
|
-
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
4061
|
-
*/
|
|
4062
|
-
readonly conversationId: string;
|
|
4063
|
-
/**
|
|
4064
|
-
*
|
|
4065
|
-
* @type {AiSendMessageRequest}
|
|
4066
|
-
* @memberof MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost
|
|
4067
|
-
*/
|
|
4068
|
-
readonly aiSendMessageRequest: AiSendMessageRequest;
|
|
4069
|
-
}
|
|
4070
|
-
/**
|
|
4071
|
-
* MessagesAi - object-oriented interface
|
|
4072
|
-
* @export
|
|
4073
|
-
* @class MessagesAi
|
|
4074
|
-
* @extends {BaseAPI}
|
|
4075
|
-
*/
|
|
4076
|
-
export declare class MessagesAi extends BaseAPI implements MessagesAiInterface {
|
|
4077
|
-
/**
|
|
4078
|
-
*
|
|
4079
|
-
* @summary Post Messages
|
|
4080
|
-
* @param {MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest} requestParameters Request parameters.
|
|
4081
|
-
* @param {*} [options] Override http request option.
|
|
4082
|
-
* @throws {RequiredError}
|
|
4083
|
-
* @memberof MessagesAi
|
|
4084
|
-
*/
|
|
4085
|
-
postMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPost(requestParameters: MessagesAiPostMessagesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdMessagesPostRequest, options?: AxiosRequestConfig): AxiosPromise<string>;
|
|
4086
|
-
}
|
|
4087
|
-
/**
|
|
4088
|
-
*
|
|
4089
|
-
* @summary Get Conversation Responses
|
|
4090
|
-
* @param {string} workspaceId
|
|
4091
|
-
* @param {string} conversationId
|
|
4092
|
-
* @param {*} [options] Override http request option.
|
|
4093
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4094
|
-
* @throws {RequiredError}
|
|
4095
|
-
*/
|
|
4096
|
-
export declare function ResponsesAiAxiosParamCreator_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4097
|
-
/**
|
|
4098
|
-
*
|
|
4099
|
-
* @summary Patch Response
|
|
4100
|
-
* @param {string} workspaceId
|
|
4101
|
-
* @param {string} conversationId
|
|
4102
|
-
* @param {string} responseId
|
|
4103
|
-
* @param {AiResponseFeedbackRequest} aiResponseFeedbackRequest
|
|
4104
|
-
* @param {*} [options] Override http request option.
|
|
4105
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4106
|
-
* @throws {RequiredError}
|
|
4107
|
-
*/
|
|
4108
|
-
export declare function ResponsesAiAxiosParamCreator_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(workspaceId: string, conversationId: string, responseId: string, aiResponseFeedbackRequest: AiResponseFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4109
|
-
/**
|
|
4110
|
-
*
|
|
4111
|
-
* @summary Post Feedback
|
|
4112
|
-
* @param {string} workspaceId
|
|
4113
|
-
* @param {string} conversationId
|
|
4114
|
-
* @param {AiConversationFeedbackRequest} aiConversationFeedbackRequest
|
|
4115
|
-
* @param {*} [options] Override http request option.
|
|
4116
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4117
|
-
* @throws {RequiredError}
|
|
4118
|
-
*/
|
|
4119
|
-
export declare function ResponsesAiAxiosParamCreator_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(workspaceId: string, conversationId: string, aiConversationFeedbackRequest: AiConversationFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4120
|
-
/**
|
|
4121
|
-
*
|
|
4122
|
-
* @summary Get Conversation Responses
|
|
4123
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4124
|
-
* @param {string} basePath Base path.
|
|
4125
|
-
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
4126
|
-
* @param {*} [options] Override http request option.
|
|
4127
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4128
|
-
* @throws {RequiredError}
|
|
4129
|
-
*/
|
|
4130
|
-
export declare function ResponsesAi_GetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiConversationResponseList>;
|
|
4131
|
-
/**
|
|
4132
|
-
*
|
|
4133
|
-
* @summary Patch Response
|
|
4134
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4135
|
-
* @param {string} basePath Base path.
|
|
4136
|
-
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
4137
|
-
* @param {*} [options] Override http request option.
|
|
4138
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4139
|
-
* @throws {RequiredError}
|
|
4140
|
-
*/
|
|
4141
|
-
export declare function ResponsesAi_PatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
4142
|
-
/**
|
|
4143
|
-
*
|
|
4144
|
-
* @summary Post Feedback
|
|
4145
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4146
|
-
* @param {string} basePath Base path.
|
|
4147
|
-
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
4148
|
-
* @param {*} [options] Override http request option.
|
|
4149
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4150
|
-
* @throws {RequiredError}
|
|
4151
|
-
*/
|
|
4152
|
-
export declare function ResponsesAi_PostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(axios: AxiosInstance, basePath: string, requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
4153
|
-
/**
|
|
4154
|
-
* ResponsesAi - interface
|
|
4155
|
-
* @export
|
|
4156
|
-
* @interface ResponsesAi
|
|
4157
|
-
*/
|
|
4158
|
-
export interface ResponsesAiInterface {
|
|
4159
|
-
/**
|
|
4160
|
-
*
|
|
4161
|
-
* @summary Get Conversation Responses
|
|
4162
|
-
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
4163
|
-
* @param {*} [options] Override http request option.
|
|
4164
|
-
* @throws {RequiredError}
|
|
4165
|
-
* @memberof ResponsesAiInterface
|
|
4166
|
-
*/
|
|
4167
|
-
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseList>;
|
|
4168
|
-
/**
|
|
4169
|
-
*
|
|
4170
|
-
* @summary Patch Response
|
|
4171
|
-
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
4172
|
-
* @param {*} [options] Override http request option.
|
|
4173
|
-
* @throws {RequiredError}
|
|
4174
|
-
* @memberof ResponsesAiInterface
|
|
4175
|
-
*/
|
|
4176
|
-
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
4177
|
-
/**
|
|
4178
|
-
*
|
|
4179
|
-
* @summary Post Feedback
|
|
4180
|
-
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
4181
|
-
* @param {*} [options] Override http request option.
|
|
4182
|
-
* @throws {RequiredError}
|
|
4183
|
-
* @memberof ResponsesAiInterface
|
|
4184
|
-
*/
|
|
4185
|
-
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
4186
|
-
}
|
|
4187
|
-
/**
|
|
4188
|
-
* Request parameters for getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet operation in ResponsesAi.
|
|
4189
|
-
* @export
|
|
4190
|
-
* @interface ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest
|
|
4191
|
-
*/
|
|
4192
|
-
export interface ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest {
|
|
4193
|
-
/**
|
|
4194
|
-
*
|
|
4195
|
-
* @type {string}
|
|
4196
|
-
* @memberof ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
4197
|
-
*/
|
|
4198
|
-
readonly workspaceId: string;
|
|
4199
|
-
/**
|
|
4200
|
-
*
|
|
4201
|
-
* @type {string}
|
|
4202
|
-
* @memberof ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet
|
|
4203
|
-
*/
|
|
4204
|
-
readonly conversationId: string;
|
|
4205
|
-
}
|
|
4206
|
-
/**
|
|
4207
|
-
* Request parameters for patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch operation in ResponsesAi.
|
|
4208
|
-
* @export
|
|
4209
|
-
* @interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest
|
|
4210
|
-
*/
|
|
4211
|
-
export interface ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest {
|
|
4212
|
-
/**
|
|
4213
|
-
*
|
|
4214
|
-
* @type {string}
|
|
4215
|
-
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
4216
|
-
*/
|
|
4217
|
-
readonly workspaceId: string;
|
|
4218
|
-
/**
|
|
4219
|
-
*
|
|
4220
|
-
* @type {string}
|
|
4221
|
-
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
4222
|
-
*/
|
|
4223
|
-
readonly conversationId: string;
|
|
4224
|
-
/**
|
|
4225
|
-
*
|
|
4226
|
-
* @type {string}
|
|
4227
|
-
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
4228
|
-
*/
|
|
4229
|
-
readonly responseId: string;
|
|
4230
|
-
/**
|
|
4231
|
-
*
|
|
4232
|
-
* @type {AiResponseFeedbackRequest}
|
|
4233
|
-
* @memberof ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch
|
|
4234
|
-
*/
|
|
4235
|
-
readonly aiResponseFeedbackRequest: AiResponseFeedbackRequest;
|
|
4236
|
-
}
|
|
4237
|
-
/**
|
|
4238
|
-
* Request parameters for postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost operation in ResponsesAi.
|
|
4239
|
-
* @export
|
|
4240
|
-
* @interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest
|
|
4241
|
-
*/
|
|
4242
|
-
export interface ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest {
|
|
4243
|
-
/**
|
|
4244
|
-
*
|
|
4245
|
-
* @type {string}
|
|
4246
|
-
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
4247
|
-
*/
|
|
4248
|
-
readonly workspaceId: string;
|
|
4249
|
-
/**
|
|
4250
|
-
*
|
|
4251
|
-
* @type {string}
|
|
4252
|
-
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
4253
|
-
*/
|
|
4254
|
-
readonly conversationId: string;
|
|
4255
|
-
/**
|
|
4256
|
-
*
|
|
4257
|
-
* @type {AiConversationFeedbackRequest}
|
|
4258
|
-
* @memberof ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost
|
|
4259
|
-
*/
|
|
4260
|
-
readonly aiConversationFeedbackRequest: AiConversationFeedbackRequest;
|
|
4261
|
-
}
|
|
4262
|
-
/**
|
|
4263
|
-
* ResponsesAi - object-oriented interface
|
|
4264
|
-
* @export
|
|
4265
|
-
* @class ResponsesAi
|
|
4266
|
-
* @extends {BaseAPI}
|
|
4267
|
-
*/
|
|
4268
|
-
export declare class ResponsesAi extends BaseAPI implements ResponsesAiInterface {
|
|
4269
|
-
/**
|
|
4270
|
-
*
|
|
4271
|
-
* @summary Get Conversation Responses
|
|
4272
|
-
* @param {ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest} requestParameters Request parameters.
|
|
4273
|
-
* @param {*} [options] Override http request option.
|
|
4274
|
-
* @throws {RequiredError}
|
|
4275
|
-
* @memberof ResponsesAi
|
|
4276
|
-
*/
|
|
4277
|
-
getConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGet(requestParameters: ResponsesAiGetConversationResponsesApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesGetRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponseList>;
|
|
4278
|
-
/**
|
|
4279
|
-
*
|
|
4280
|
-
* @summary Patch Response
|
|
4281
|
-
* @param {ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest} requestParameters Request parameters.
|
|
4282
|
-
* @param {*} [options] Override http request option.
|
|
4283
|
-
* @throws {RequiredError}
|
|
4284
|
-
* @memberof ResponsesAi
|
|
4285
|
-
*/
|
|
4286
|
-
patchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatch(requestParameters: ResponsesAiPatchResponseApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdResponsesResponseIdPatchRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
4287
|
-
/**
|
|
4288
|
-
*
|
|
4289
|
-
* @summary Post Feedback
|
|
4290
|
-
* @param {ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest} requestParameters Request parameters.
|
|
4291
|
-
* @param {*} [options] Override http request option.
|
|
4292
|
-
* @throws {RequiredError}
|
|
4293
|
-
* @memberof ResponsesAi
|
|
4294
|
-
*/
|
|
4295
|
-
postFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPost(requestParameters: ResponsesAiPostFeedbackApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdFeedbackPostRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
4296
|
-
}
|
|
4297
|
-
/**
|
|
4298
|
-
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
4299
|
-
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
4300
|
-
* @param {string} workspaceId
|
|
4301
|
-
* @param {AiSummarizeRequest} aiSummarizeRequest
|
|
4302
|
-
* @param {*} [options] Override http request option.
|
|
4303
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4304
|
-
* @throws {RequiredError}
|
|
4305
|
-
*/
|
|
4306
|
-
export declare function SummaryAiAxiosParamCreator_SummarizeDashboard(workspaceId: string, aiSummarizeRequest: AiSummarizeRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4307
|
-
/**
|
|
4308
|
-
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
4309
|
-
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
4310
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4311
|
-
* @param {string} basePath Base path.
|
|
4312
|
-
* @param {SummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
4313
|
-
* @param {*} [options] Override http request option.
|
|
4314
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4315
|
-
* @throws {RequiredError}
|
|
4316
|
-
*/
|
|
4317
|
-
export declare function SummaryAi_SummarizeDashboard(axios: AxiosInstance, basePath: string, requestParameters: SummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiSummarizeResponse>;
|
|
4318
|
-
/**
|
|
4319
|
-
* SummaryAi - interface
|
|
4320
|
-
* @export
|
|
4321
|
-
* @interface SummaryAi
|
|
4322
|
-
*/
|
|
4323
|
-
export interface SummaryAiInterface {
|
|
4324
|
-
/**
|
|
4325
|
-
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
4326
|
-
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
4327
|
-
* @param {SummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
4328
|
-
* @param {*} [options] Override http request option.
|
|
4329
|
-
* @throws {RequiredError}
|
|
4330
|
-
* @memberof SummaryAiInterface
|
|
4331
|
-
*/
|
|
4332
|
-
summarizeDashboard(requestParameters: SummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig): AxiosPromise<AiSummarizeResponse>;
|
|
4333
|
-
}
|
|
4334
|
-
/**
|
|
4335
|
-
* Request parameters for summarizeDashboard operation in SummaryAi.
|
|
4336
|
-
* @export
|
|
4337
|
-
* @interface SummaryAiSummarizeDashboardRequest
|
|
4338
|
-
*/
|
|
4339
|
-
export interface SummaryAiSummarizeDashboardRequest {
|
|
4340
|
-
/**
|
|
4341
|
-
*
|
|
4342
|
-
* @type {string}
|
|
4343
|
-
* @memberof SummaryAiSummarizeDashboard
|
|
4344
|
-
*/
|
|
4345
|
-
readonly workspaceId: string;
|
|
4346
|
-
/**
|
|
4347
|
-
*
|
|
4348
|
-
* @type {AiSummarizeRequest}
|
|
4349
|
-
* @memberof SummaryAiSummarizeDashboard
|
|
4350
|
-
*/
|
|
4351
|
-
readonly aiSummarizeRequest: AiSummarizeRequest;
|
|
4352
|
-
}
|
|
4353
|
-
/**
|
|
4354
|
-
* SummaryAi - object-oriented interface
|
|
4355
|
-
* @export
|
|
4356
|
-
* @class SummaryAi
|
|
4357
|
-
* @extends {BaseAPI}
|
|
4358
|
-
*/
|
|
4359
|
-
export declare class SummaryAi extends BaseAPI implements SummaryAiInterface {
|
|
4360
|
-
/**
|
|
4361
|
-
* Note: This API is an experimental and is going to change. Please, use it accordingly. Generates a natural-language summary of a dashboard\'s visualizations, optionally scoped by an explicit filter context.
|
|
4362
|
-
* @summary (EXPERIMENTAL) Summarize a dashboard
|
|
4363
|
-
* @param {SummaryAiSummarizeDashboardRequest} requestParameters Request parameters.
|
|
4364
|
-
* @param {*} [options] Override http request option.
|
|
4365
|
-
* @throws {RequiredError}
|
|
4366
|
-
* @memberof SummaryAi
|
|
4367
|
-
*/
|
|
4368
|
-
summarizeDashboard(requestParameters: SummaryAiSummarizeDashboardRequest, options?: AxiosRequestConfig): AxiosPromise<AiSummarizeResponse>;
|
|
4369
|
-
}
|
|
4370
|
-
/**
|
|
4371
|
-
*
|
|
4372
|
-
* @summary Patch Visualization
|
|
4373
|
-
* @param {string} workspaceId
|
|
4374
|
-
* @param {string} conversationId
|
|
4375
|
-
* @param {string} visualizationId
|
|
4376
|
-
* @param {AiVisualizationIdUpdateRequest} aiVisualizationIdUpdateRequest
|
|
4320
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
4321
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
4377
4322
|
* @param {*} [options] Override http request option.
|
|
4378
4323
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4379
4324
|
* @throws {RequiredError}
|
|
4380
4325
|
*/
|
|
4381
|
-
export declare function
|
|
4326
|
+
export declare function ObservabilityAiAxiosParamCreator_GetObservabilityOverview(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4382
4327
|
/**
|
|
4383
|
-
*
|
|
4384
|
-
* @summary
|
|
4328
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
4329
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
4385
4330
|
* @param {AxiosInstance} axios Axios instance.
|
|
4386
4331
|
* @param {string} basePath Base path.
|
|
4387
|
-
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
4388
4332
|
* @param {*} [options] Override http request option.
|
|
4389
4333
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4390
4334
|
* @throws {RequiredError}
|
|
4391
4335
|
*/
|
|
4392
|
-
export declare function
|
|
4336
|
+
export declare function ObservabilityAi_GetObservabilityOverview(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
4393
4337
|
/**
|
|
4394
|
-
*
|
|
4338
|
+
* ObservabilityAi - interface
|
|
4395
4339
|
* @export
|
|
4396
|
-
* @interface
|
|
4340
|
+
* @interface ObservabilityAi
|
|
4397
4341
|
*/
|
|
4398
|
-
export interface
|
|
4342
|
+
export interface ObservabilityAiInterface {
|
|
4399
4343
|
/**
|
|
4400
|
-
*
|
|
4401
|
-
* @summary
|
|
4402
|
-
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
4344
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
4345
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
4403
4346
|
* @param {*} [options] Override http request option.
|
|
4404
4347
|
* @throws {RequiredError}
|
|
4405
|
-
* @memberof
|
|
4348
|
+
* @memberof ObservabilityAiInterface
|
|
4406
4349
|
*/
|
|
4407
|
-
|
|
4408
|
-
}
|
|
4409
|
-
/**
|
|
4410
|
-
* Request parameters for patchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch operation in VisualizationsAi.
|
|
4411
|
-
* @export
|
|
4412
|
-
* @interface VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest
|
|
4413
|
-
*/
|
|
4414
|
-
export interface VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest {
|
|
4415
|
-
/**
|
|
4416
|
-
*
|
|
4417
|
-
* @type {string}
|
|
4418
|
-
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
4419
|
-
*/
|
|
4420
|
-
readonly workspaceId: string;
|
|
4421
|
-
/**
|
|
4422
|
-
*
|
|
4423
|
-
* @type {string}
|
|
4424
|
-
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
4425
|
-
*/
|
|
4426
|
-
readonly conversationId: string;
|
|
4427
|
-
/**
|
|
4428
|
-
*
|
|
4429
|
-
* @type {string}
|
|
4430
|
-
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
4431
|
-
*/
|
|
4432
|
-
readonly visualizationId: string;
|
|
4433
|
-
/**
|
|
4434
|
-
*
|
|
4435
|
-
* @type {AiVisualizationIdUpdateRequest}
|
|
4436
|
-
* @memberof VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatch
|
|
4437
|
-
*/
|
|
4438
|
-
readonly aiVisualizationIdUpdateRequest: AiVisualizationIdUpdateRequest;
|
|
4350
|
+
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
4439
4351
|
}
|
|
4440
4352
|
/**
|
|
4441
|
-
*
|
|
4353
|
+
* ObservabilityAi - object-oriented interface
|
|
4442
4354
|
* @export
|
|
4443
|
-
* @class
|
|
4355
|
+
* @class ObservabilityAi
|
|
4444
4356
|
* @extends {BaseAPI}
|
|
4445
4357
|
*/
|
|
4446
|
-
export declare class
|
|
4358
|
+
export declare class ObservabilityAi extends BaseAPI implements ObservabilityAiInterface {
|
|
4447
4359
|
/**
|
|
4448
|
-
*
|
|
4449
|
-
* @summary
|
|
4450
|
-
* @param {VisualizationsAiPatchVisualizationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdVisualizationsVisualizationIdPatchRequest} requestParameters Request parameters.
|
|
4360
|
+
* Returns AI usage stats for the user\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
4361
|
+
* @summary (EXPERIMENTAL) AI observability overview
|
|
4451
4362
|
* @param {*} [options] Override http request option.
|
|
4452
4363
|
* @throws {RequiredError}
|
|
4453
|
-
* @memberof
|
|
4364
|
+
* @memberof ObservabilityAi
|
|
4454
4365
|
*/
|
|
4455
|
-
|
|
4366
|
+
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
4456
4367
|
}
|
|
4457
4368
|
//# sourceMappingURL=api.d.ts.map
|