@yuntijs/arcadia-bff-sdk 1.2.165 → 1.2.167
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/dist/cjs/sdk.d.ts +4 -0
- package/dist/cjs/sdk.js +1 -0
- package/dist/esm/sdk.d.ts +4 -0
- package/dist/esm/sdk.js +1 -1
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ export type AgentInvocationLog = {
|
|
|
184
184
|
startedAt?: Maybe<Scalars['Time']['output']>;
|
|
185
185
|
/** 状态 */
|
|
186
186
|
status?: Maybe<Scalars['String']['output']>;
|
|
187
|
+
/** tags 此轮会话的归类标签 */
|
|
188
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
187
189
|
/** 首字符响应延迟 */
|
|
188
190
|
timeToFirstToken?: Maybe<Scalars['Int64']['output']>;
|
|
189
191
|
/** tokenUsage 会话的token消耗 */
|
|
@@ -1897,6 +1899,7 @@ export type ListAgentInvocationLogsInput = {
|
|
|
1897
1899
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
1898
1900
|
startTime?: InputMaybe<Scalars['Time']['input']>;
|
|
1899
1901
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1902
|
+
tag?: InputMaybe<Scalars['String']['input']>;
|
|
1900
1903
|
userId?: InputMaybe<Scalars['String']['input']>;
|
|
1901
1904
|
vote?: InputMaybe<Scalars['Int64']['input']>;
|
|
1902
1905
|
};
|
|
@@ -5226,6 +5229,7 @@ export type ListAgentInvocationLogsQuery = {
|
|
|
5226
5229
|
vote?: any | null;
|
|
5227
5230
|
status?: string | null;
|
|
5228
5231
|
userId?: string | null;
|
|
5232
|
+
tags?: Array<string> | null;
|
|
5229
5233
|
events?: Array<{
|
|
5230
5234
|
__typename?: 'Event';
|
|
5231
5235
|
eventType: string;
|
package/dist/cjs/sdk.js
CHANGED
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ export type AgentInvocationLog = {
|
|
|
184
184
|
startedAt?: Maybe<Scalars['Time']['output']>;
|
|
185
185
|
/** 状态 */
|
|
186
186
|
status?: Maybe<Scalars['String']['output']>;
|
|
187
|
+
/** tags 此轮会话的归类标签 */
|
|
188
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
187
189
|
/** 首字符响应延迟 */
|
|
188
190
|
timeToFirstToken?: Maybe<Scalars['Int64']['output']>;
|
|
189
191
|
/** tokenUsage 会话的token消耗 */
|
|
@@ -1897,6 +1899,7 @@ export type ListAgentInvocationLogsInput = {
|
|
|
1897
1899
|
size?: InputMaybe<Scalars['Int']['input']>;
|
|
1898
1900
|
startTime?: InputMaybe<Scalars['Time']['input']>;
|
|
1899
1901
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1902
|
+
tag?: InputMaybe<Scalars['String']['input']>;
|
|
1900
1903
|
userId?: InputMaybe<Scalars['String']['input']>;
|
|
1901
1904
|
vote?: InputMaybe<Scalars['Int64']['input']>;
|
|
1902
1905
|
};
|
|
@@ -5226,6 +5229,7 @@ export type ListAgentInvocationLogsQuery = {
|
|
|
5226
5229
|
vote?: any | null;
|
|
5227
5230
|
status?: string | null;
|
|
5228
5231
|
userId?: string | null;
|
|
5232
|
+
tags?: Array<string> | null;
|
|
5229
5233
|
events?: Array<{
|
|
5230
5234
|
__typename?: 'Event';
|
|
5231
5235
|
eventType: string;
|
package/dist/esm/sdk.js
CHANGED
|
@@ -201,7 +201,7 @@ export var ListAgentPromptDocument = gql(_templateObject26 || (_templateObject26
|
|
|
201
201
|
export var ListGptCategoryDocument = gql(_templateObject27 || (_templateObject27 = _taggedTemplateLiteral(["\n query listGPTCategory {\n Agent {\n listGPTCategory {\n id\n name\n nameEn\n }\n }\n}\n "])));
|
|
202
202
|
export var GetGptStoreDocument = gql(_templateObject28 || (_templateObject28 = _taggedTemplateLiteral(["\n query getGPTStore {\n Agent {\n getGPTStore {\n url\n public_namespace\n }\n }\n}\n "])));
|
|
203
203
|
export var GetWeiXinAuthorizerUrlDocument = gql(_templateObject29 || (_templateObject29 = _taggedTemplateLiteral(["\n query getWeiXinAuthorizerURL($name: String!, $namespace: String!, $redirectURL: String!) {\n Agent {\n getWeiXinAuthorizerURL(\n name: $name\n namespace: $namespace\n redirectURL: $redirectURL\n )\n }\n}\n "])));
|
|
204
|
-
export var ListAgentInvocationLogsDocument = gql(_templateObject30 || (_templateObject30 = _taggedTemplateLiteral(["\n query listAgentInvocationLogs($input: ListAgentInvocationLogsInput) {\n Agent {\n listAgentInvocationLogs(input: $input) {\n totalCount\n page\n pageSize\n nodes {\n ... on AgentInvocationLog {\n id\n conversationId\n platform\n request\n requestBody\n func\n response\n responseBody\n latency\n startedAt\n respondedAt\n timeToFirstToken\n createdAt\n vote\n status\n events {\n eventType\n agentName\n agentNamespace\n elapsedTime\n status\n error\n data\n }\n tokenUsage {\n completionTokens\n promptTokens\n totalTokens\n }\n userId\n }\n }\n }\n }\n}\n "])));
|
|
204
|
+
export var ListAgentInvocationLogsDocument = gql(_templateObject30 || (_templateObject30 = _taggedTemplateLiteral(["\n query listAgentInvocationLogs($input: ListAgentInvocationLogsInput) {\n Agent {\n listAgentInvocationLogs(input: $input) {\n totalCount\n page\n pageSize\n nodes {\n ... on AgentInvocationLog {\n id\n conversationId\n platform\n request\n requestBody\n func\n response\n responseBody\n latency\n startedAt\n respondedAt\n timeToFirstToken\n createdAt\n vote\n status\n events {\n eventType\n agentName\n agentNamespace\n elapsedTime\n status\n error\n data\n }\n tokenUsage {\n completionTokens\n promptTokens\n totalTokens\n }\n userId\n tags\n }\n }\n }\n }\n}\n "])));
|
|
205
205
|
export var GetAgentStatsDocument = gql(_templateObject31 || (_templateObject31 = _taggedTemplateLiteral(["\n query getAgentStats($input: GetAgentStatsInput) {\n Agent {\n getAgentStats(input: $input) {\n entries {\n timestamp\n granuarity\n messageCount\n conversationCount\n tokenUsage\n upvoteCount\n downvoteCount\n }\n totalMessages\n totalConversations\n totalTokenUsage\n totalUpvotes\n totalDownvotes\n }\n }\n}\n "])));
|
|
206
206
|
export var ListDatasetsDocument = gql(_templateObject32 || (_templateObject32 = _taggedTemplateLiteral(["\n query listDatasets($input: ListDatasetInput, $versionsInput: ListVersionedDatasetInput!, $filesInput: FileFilter) {\n Dataset {\n listDatasets(input: $input) {\n totalCount\n hasNextPage\n nodes {\n ... on Dataset {\n name\n namespace\n creator\n displayName\n updateTimestamp\n creationTimestamp\n contentType\n field\n versions(input: $versionsInput) {\n totalCount\n hasNextPage\n nodes {\n ... on VersionedDataset {\n name\n namespace\n displayName\n description\n syncStatus\n released\n dataProcessStatus\n updateTimestamp\n version\n files(input: $filesInput) {\n totalCount\n }\n }\n }\n }\n }\n }\n }\n }\n}\n "])));
|
|
207
207
|
export var GetDatasetDocument = gql(_templateObject33 || (_templateObject33 = _taggedTemplateLiteral(["\n query getDataset($name: String!, $namespace: String!, $versionsInput: ListVersionedDatasetInput!, $filesInput: FileFilter) {\n Dataset {\n getDataset(name: $name, namespace: $namespace) {\n name\n namespace\n creator\n displayName\n updateTimestamp\n creationTimestamp\n contentType\n field\n versions(input: $versionsInput) {\n totalCount\n hasNextPage\n nodes {\n ... on VersionedDataset {\n name\n namespace\n displayName\n description\n syncStatus\n released\n dataProcessStatus\n updateTimestamp\n version\n files(input: $filesInput) {\n totalCount\n }\n }\n }\n }\n }\n }\n}\n "])));
|