@crestal/nation-sdk 0.1.31 → 0.2.0
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/README.md +7 -5
- package/api.ts +207 -29
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +99 -17
- package/dist/api.js +241 -29
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/AgentApi.md +59 -0
- package/docs/ChatApi.md +60 -1
- package/docs/HealthApi.md +4 -4
- package/docs/LLMModelInfoWithProviderName.md +2 -2
- package/docs/MetadataApi.md +8 -8
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Nation IntentKit API
|
|
3
3
|
* API for Nation IntentKit services
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.2.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2680,6 +2680,16 @@ export declare const AgentApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2680
2680
|
* @throws {RequiredError}
|
|
2681
2681
|
*/
|
|
2682
2682
|
getAgents: (sort?: AgentSortOption, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2683
|
+
/**
|
|
2684
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
2685
|
+
* @summary Skill History
|
|
2686
|
+
* @param {string} aid Agent ID
|
|
2687
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
2688
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
2689
|
+
* @param {*} [options] Override http request option.
|
|
2690
|
+
* @throws {RequiredError}
|
|
2691
|
+
*/
|
|
2692
|
+
getSkillHistory: (aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2683
2693
|
/**
|
|
2684
2694
|
* Import agent configuration from YAML file. Only updates existing agents, will not create new ones. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `file` - YAML file containing agent configuration **Returns:** * `str` - Success message **Raises:** * `HTTPException`: - 400: Invalid YAML or agent configuration - 404: Agent not found - 500: Server error
|
|
2685
2695
|
* @summary Import Agent
|
|
@@ -2772,6 +2782,16 @@ export declare const AgentApiFp: (configuration?: Configuration) => {
|
|
|
2772
2782
|
* @throws {RequiredError}
|
|
2773
2783
|
*/
|
|
2774
2784
|
getAgents(sort?: AgentSortOption, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AgentListResponse>>;
|
|
2785
|
+
/**
|
|
2786
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
2787
|
+
* @summary Skill History
|
|
2788
|
+
* @param {string} aid Agent ID
|
|
2789
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
2790
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
2791
|
+
* @param {*} [options] Override http request option.
|
|
2792
|
+
* @throws {RequiredError}
|
|
2793
|
+
*/
|
|
2794
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatMessagesResponse>>;
|
|
2775
2795
|
/**
|
|
2776
2796
|
* Import agent configuration from YAML file. Only updates existing agents, will not create new ones. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `file` - YAML file containing agent configuration **Returns:** * `str` - Success message **Raises:** * `HTTPException`: - 400: Invalid YAML or agent configuration - 404: Agent not found - 500: Server error
|
|
2777
2797
|
* @summary Import Agent
|
|
@@ -2864,6 +2884,16 @@ export declare const AgentApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2864
2884
|
* @throws {RequiredError}
|
|
2865
2885
|
*/
|
|
2866
2886
|
getAgents(sort?: AgentSortOption, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<AgentListResponse>;
|
|
2887
|
+
/**
|
|
2888
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
2889
|
+
* @summary Skill History
|
|
2890
|
+
* @param {string} aid Agent ID
|
|
2891
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
2892
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
2893
|
+
* @param {*} [options] Override http request option.
|
|
2894
|
+
* @throws {RequiredError}
|
|
2895
|
+
*/
|
|
2896
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<ChatMessagesResponse>;
|
|
2867
2897
|
/**
|
|
2868
2898
|
* Import agent configuration from YAML file. Only updates existing agents, will not create new ones. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `file` - YAML file containing agent configuration **Returns:** * `str` - Success message **Raises:** * `HTTPException`: - 400: Invalid YAML or agent configuration - 404: Agent not found - 500: Server error
|
|
2869
2899
|
* @summary Import Agent
|
|
@@ -2963,6 +2993,17 @@ export declare class AgentApi extends BaseAPI {
|
|
|
2963
2993
|
* @memberof AgentApi
|
|
2964
2994
|
*/
|
|
2965
2995
|
getAgents(sort?: AgentSortOption, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentListResponse, any>>;
|
|
2996
|
+
/**
|
|
2997
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
2998
|
+
* @summary Skill History
|
|
2999
|
+
* @param {string} aid Agent ID
|
|
3000
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
3001
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
3002
|
+
* @param {*} [options] Override http request option.
|
|
3003
|
+
* @throws {RequiredError}
|
|
3004
|
+
* @memberof AgentApi
|
|
3005
|
+
*/
|
|
3006
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessagesResponse, any>>;
|
|
2966
3007
|
/**
|
|
2967
3008
|
* Import agent configuration from YAML file. Only updates existing agents, will not create new ones. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `file` - YAML file containing agent configuration **Returns:** * `str` - Success message **Raises:** * `HTTPException`: - 400: Invalid YAML or agent configuration - 404: Agent not found - 500: Server error
|
|
2968
3009
|
* @summary Import Agent
|
|
@@ -3052,6 +3093,16 @@ export declare const ChatApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3052
3093
|
* @throws {RequiredError}
|
|
3053
3094
|
*/
|
|
3054
3095
|
getMessageById: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3096
|
+
/**
|
|
3097
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
3098
|
+
* @summary Skill History
|
|
3099
|
+
* @param {string} aid Agent ID
|
|
3100
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
3101
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
3102
|
+
* @param {*} [options] Override http request option.
|
|
3103
|
+
* @throws {RequiredError}
|
|
3104
|
+
*/
|
|
3105
|
+
getSkillHistory: (aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3055
3106
|
/**
|
|
3056
3107
|
* Retrieve all chat threads associated with a specific agent for the current user.
|
|
3057
3108
|
* @summary List chat threads for an agent
|
|
@@ -3081,7 +3132,7 @@ export declare const ChatApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
3081
3132
|
*/
|
|
3082
3133
|
retryMessageInChat: (aid: string, chatId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3083
3134
|
/**
|
|
3084
|
-
* Send a new message to a specific chat thread.
|
|
3135
|
+
* Send a new message to a specific chat thread. The response is a list of messages generated by the agent.The response not include the original user message. It could be skill calls, agent messages, or system error messages. If the stream mode is requested, the response will be HTTP2 streaming response.
|
|
3085
3136
|
* @summary Send a message to a chat thread
|
|
3086
3137
|
* @param {string} aid Agent ID
|
|
3087
3138
|
* @param {string} chatId Chat ID
|
|
@@ -3140,6 +3191,16 @@ export declare const ChatApiFp: (configuration?: Configuration) => {
|
|
|
3140
3191
|
* @throws {RequiredError}
|
|
3141
3192
|
*/
|
|
3142
3193
|
getMessageById(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatMessage>>;
|
|
3194
|
+
/**
|
|
3195
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
3196
|
+
* @summary Skill History
|
|
3197
|
+
* @param {string} aid Agent ID
|
|
3198
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
3199
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
3200
|
+
* @param {*} [options] Override http request option.
|
|
3201
|
+
* @throws {RequiredError}
|
|
3202
|
+
*/
|
|
3203
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatMessagesResponse>>;
|
|
3143
3204
|
/**
|
|
3144
3205
|
* Retrieve all chat threads associated with a specific agent for the current user.
|
|
3145
3206
|
* @summary List chat threads for an agent
|
|
@@ -3169,7 +3230,7 @@ export declare const ChatApiFp: (configuration?: Configuration) => {
|
|
|
3169
3230
|
*/
|
|
3170
3231
|
retryMessageInChat(aid: string, chatId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ChatMessage>>>;
|
|
3171
3232
|
/**
|
|
3172
|
-
* Send a new message to a specific chat thread.
|
|
3233
|
+
* Send a new message to a specific chat thread. The response is a list of messages generated by the agent.The response not include the original user message. It could be skill calls, agent messages, or system error messages. If the stream mode is requested, the response will be HTTP2 streaming response.
|
|
3173
3234
|
* @summary Send a message to a chat thread
|
|
3174
3235
|
* @param {string} aid Agent ID
|
|
3175
3236
|
* @param {string} chatId Chat ID
|
|
@@ -3228,6 +3289,16 @@ export declare const ChatApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3228
3289
|
* @throws {RequiredError}
|
|
3229
3290
|
*/
|
|
3230
3291
|
getMessageById(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<ChatMessage>;
|
|
3292
|
+
/**
|
|
3293
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
3294
|
+
* @summary Skill History
|
|
3295
|
+
* @param {string} aid Agent ID
|
|
3296
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
3297
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
3298
|
+
* @param {*} [options] Override http request option.
|
|
3299
|
+
* @throws {RequiredError}
|
|
3300
|
+
*/
|
|
3301
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<ChatMessagesResponse>;
|
|
3231
3302
|
/**
|
|
3232
3303
|
* Retrieve all chat threads associated with a specific agent for the current user.
|
|
3233
3304
|
* @summary List chat threads for an agent
|
|
@@ -3257,7 +3328,7 @@ export declare const ChatApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3257
3328
|
*/
|
|
3258
3329
|
retryMessageInChat(aid: string, chatId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ChatMessage>>;
|
|
3259
3330
|
/**
|
|
3260
|
-
* Send a new message to a specific chat thread.
|
|
3331
|
+
* Send a new message to a specific chat thread. The response is a list of messages generated by the agent.The response not include the original user message. It could be skill calls, agent messages, or system error messages. If the stream mode is requested, the response will be HTTP2 streaming response.
|
|
3261
3332
|
* @summary Send a message to a chat thread
|
|
3262
3333
|
* @param {string} aid Agent ID
|
|
3263
3334
|
* @param {string} chatId Chat ID
|
|
@@ -3322,6 +3393,17 @@ export declare class ChatApi extends BaseAPI {
|
|
|
3322
3393
|
* @memberof ChatApi
|
|
3323
3394
|
*/
|
|
3324
3395
|
getMessageById(messageId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessage, any>>;
|
|
3396
|
+
/**
|
|
3397
|
+
* Get skill messages for a specific agent with cursor-based pagination. **Path Parameters:** * `aid` - Agent ID **Query Parameters:** * `cursor` - Optional cursor for pagination based on message ID * `limit` - Maximum number of messages to return (1-100, default: 20) **Returns:** * `ChatMessagesResponse` - Paginated list of skill messages with metadata **Raises:** * `404` - Agent not found
|
|
3398
|
+
* @summary Skill History
|
|
3399
|
+
* @param {string} aid Agent ID
|
|
3400
|
+
* @param {string | null} [cursor] Cursor for pagination (message id)
|
|
3401
|
+
* @param {number} [limit] Maximum number of messages to return
|
|
3402
|
+
* @param {*} [options] Override http request option.
|
|
3403
|
+
* @throws {RequiredError}
|
|
3404
|
+
* @memberof ChatApi
|
|
3405
|
+
*/
|
|
3406
|
+
getSkillHistory(aid: string, cursor?: string | null, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessagesResponse, any>>;
|
|
3325
3407
|
/**
|
|
3326
3408
|
* Retrieve all chat threads associated with a specific agent for the current user.
|
|
3327
3409
|
* @summary List chat threads for an agent
|
|
@@ -3354,7 +3436,7 @@ export declare class ChatApi extends BaseAPI {
|
|
|
3354
3436
|
*/
|
|
3355
3437
|
retryMessageInChat(aid: string, chatId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessage[], any>>;
|
|
3356
3438
|
/**
|
|
3357
|
-
* Send a new message to a specific chat thread.
|
|
3439
|
+
* Send a new message to a specific chat thread. The response is a list of messages generated by the agent.The response not include the original user message. It could be skill calls, agent messages, or system error messages. If the stream mode is requested, the response will be HTTP2 streaming response.
|
|
3358
3440
|
* @summary Send a message to a chat thread
|
|
3359
3441
|
* @param {string} aid Agent ID
|
|
3360
3442
|
* @param {string} chatId Chat ID
|
|
@@ -3731,7 +3813,7 @@ export declare const HealthApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3731
3813
|
* @param {*} [options] Override http request option.
|
|
3732
3814
|
* @throws {RequiredError}
|
|
3733
3815
|
*/
|
|
3734
|
-
|
|
3816
|
+
healthCheck: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3735
3817
|
};
|
|
3736
3818
|
/**
|
|
3737
3819
|
* HealthApi - functional programming interface
|
|
@@ -3744,7 +3826,7 @@ export declare const HealthApiFp: (configuration?: Configuration) => {
|
|
|
3744
3826
|
* @param {*} [options] Override http request option.
|
|
3745
3827
|
* @throws {RequiredError}
|
|
3746
3828
|
*/
|
|
3747
|
-
|
|
3829
|
+
healthCheck(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
3748
3830
|
};
|
|
3749
3831
|
/**
|
|
3750
3832
|
* HealthApi - factory interface
|
|
@@ -3757,7 +3839,7 @@ export declare const HealthApiFactory: (configuration?: Configuration, basePath?
|
|
|
3757
3839
|
* @param {*} [options] Override http request option.
|
|
3758
3840
|
* @throws {RequiredError}
|
|
3759
3841
|
*/
|
|
3760
|
-
|
|
3842
|
+
healthCheck(options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
3761
3843
|
};
|
|
3762
3844
|
/**
|
|
3763
3845
|
* HealthApi - object-oriented interface
|
|
@@ -3773,7 +3855,7 @@ export declare class HealthApi extends BaseAPI {
|
|
|
3773
3855
|
* @throws {RequiredError}
|
|
3774
3856
|
* @memberof HealthApi
|
|
3775
3857
|
*/
|
|
3776
|
-
|
|
3858
|
+
healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
3777
3859
|
}
|
|
3778
3860
|
/**
|
|
3779
3861
|
* MetadataApi - axios parameter creator
|
|
@@ -3793,7 +3875,7 @@ export declare const MetadataApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3793
3875
|
* @param {*} [options] Override http request option.
|
|
3794
3876
|
* @throws {RequiredError}
|
|
3795
3877
|
*/
|
|
3796
|
-
|
|
3878
|
+
getLlms: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3797
3879
|
/**
|
|
3798
3880
|
* Get the icon for a specific skill
|
|
3799
3881
|
* @summary Get skill icon
|
|
@@ -3818,7 +3900,7 @@ export declare const MetadataApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
3818
3900
|
* @param {*} [options] Override http request option.
|
|
3819
3901
|
* @throws {RequiredError}
|
|
3820
3902
|
*/
|
|
3821
|
-
|
|
3903
|
+
getSkills: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3822
3904
|
};
|
|
3823
3905
|
/**
|
|
3824
3906
|
* MetadataApi - functional programming interface
|
|
@@ -3838,7 +3920,7 @@ export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
|
3838
3920
|
* @param {*} [options] Override http request option.
|
|
3839
3921
|
* @throws {RequiredError}
|
|
3840
3922
|
*/
|
|
3841
|
-
|
|
3923
|
+
getLlms(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LLMModelInfoWithProviderName>>>;
|
|
3842
3924
|
/**
|
|
3843
3925
|
* Get the icon for a specific skill
|
|
3844
3926
|
* @summary Get skill icon
|
|
@@ -3863,7 +3945,7 @@ export declare const MetadataApiFp: (configuration?: Configuration) => {
|
|
|
3863
3945
|
* @param {*} [options] Override http request option.
|
|
3864
3946
|
* @throws {RequiredError}
|
|
3865
3947
|
*/
|
|
3866
|
-
|
|
3948
|
+
getSkills(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Skill>>>;
|
|
3867
3949
|
};
|
|
3868
3950
|
/**
|
|
3869
3951
|
* MetadataApi - factory interface
|
|
@@ -3883,7 +3965,7 @@ export declare const MetadataApiFactory: (configuration?: Configuration, basePat
|
|
|
3883
3965
|
* @param {*} [options] Override http request option.
|
|
3884
3966
|
* @throws {RequiredError}
|
|
3885
3967
|
*/
|
|
3886
|
-
|
|
3968
|
+
getLlms(options?: RawAxiosRequestConfig): AxiosPromise<Array<LLMModelInfoWithProviderName>>;
|
|
3887
3969
|
/**
|
|
3888
3970
|
* Get the icon for a specific skill
|
|
3889
3971
|
* @summary Get skill icon
|
|
@@ -3908,7 +3990,7 @@ export declare const MetadataApiFactory: (configuration?: Configuration, basePat
|
|
|
3908
3990
|
* @param {*} [options] Override http request option.
|
|
3909
3991
|
* @throws {RequiredError}
|
|
3910
3992
|
*/
|
|
3911
|
-
|
|
3993
|
+
getSkills(options?: RawAxiosRequestConfig): AxiosPromise<Array<Skill>>;
|
|
3912
3994
|
};
|
|
3913
3995
|
/**
|
|
3914
3996
|
* MetadataApi - object-oriented interface
|
|
@@ -3932,7 +4014,7 @@ export declare class MetadataApi extends BaseAPI {
|
|
|
3932
4014
|
* @throws {RequiredError}
|
|
3933
4015
|
* @memberof MetadataApi
|
|
3934
4016
|
*/
|
|
3935
|
-
|
|
4017
|
+
getLlms(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LLMModelInfoWithProviderName[], any>>;
|
|
3936
4018
|
/**
|
|
3937
4019
|
* Get the icon for a specific skill
|
|
3938
4020
|
* @summary Get skill icon
|
|
@@ -3960,7 +4042,7 @@ export declare class MetadataApi extends BaseAPI {
|
|
|
3960
4042
|
* @throws {RequiredError}
|
|
3961
4043
|
* @memberof MetadataApi
|
|
3962
4044
|
*/
|
|
3963
|
-
|
|
4045
|
+
getSkills(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Skill[], any>>;
|
|
3964
4046
|
}
|
|
3965
4047
|
/**
|
|
3966
4048
|
* OAuthApi - axios parameter creator
|