Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion types/wx/lib.wx.cloud.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,14 @@ declare namespace ICloud {
interface ICloudExtendServices {
AI: ICloudAI
}
interface ICloudAIModelDefinition {
modelName: string
modelPath: string
extractPath: string
reasoningPath?: string
}
interface ICloudAI {
createModel: (modelName: string) => ICloudAIModel
createModel: (modelName: string | ICloudAIModelDefinition) => ICloudAIModel
bot: ICloudBot
}
interface ICloudAICallbackOptions {
Expand Down
Loading