We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53deacf commit ac60d6dCopy full SHA for ac60d6d
1 file changed
types/wx/lib.wx.cloud.d.ts
@@ -241,8 +241,14 @@ declare namespace ICloud {
241
interface ICloudExtendServices {
242
AI: ICloudAI
243
}
244
+ interface ICloudAIModelDefinition {
245
+ modelName: string
246
+ modelPath: string
247
+ extractPath: string
248
+ reasoningPath?: string
249
+ }
250
interface ICloudAI {
- createModel: (modelName: string) => ICloudAIModel
251
+ createModel: (modelName: string | ICloudAIModelDefinition) => ICloudAIModel
252
bot: ICloudBot
253
254
interface ICloudAICallbackOptions {
0 commit comments