Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat cloud extend #345

Merged
merged 2 commits into from
Mar 17, 2025
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
69 changes: 68 additions & 1 deletion types/wx/lib.wx.cloud.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
***************************************************************************** */

/// <reference lib="es2018.asynciterable" />

/**
* Common interfaces and types
*/
Expand Down Expand Up @@ -137,6 +139,7 @@ interface WxCloud {
): Promise<ICloud.ConnectContainerResult>

services: ICloud.CloudServices
extend: ICloud.ICloudExtendServices
}

declare namespace ICloud {
Expand Down Expand Up @@ -218,7 +221,7 @@ declare namespace ICloud {
refresh: (session: AsyncSession<string>) => Promise<void>
}
interface GatewayConstructOptions {
id: string
id?: string
appid?: string
domain?: string
keepalive?: boolean
Expand All @@ -234,6 +237,70 @@ declare namespace ICloud {
}
// === end ===

// === API: extend ===
interface ICloudExtendServices {
AI: ICloudAI
}
interface ICloudAI {
createModel: (modelName: string) => ICloudAIModel
bot: ICloudBot
}
interface ICloudAICallbackOptions {
onEvent?: (ev: ICloudAIEvent) => void
onText?: (text: string) => void
onFinish?: (text: string) => void
}
interface ICloudBot {
get: ({ botId: string }: any) => any
list: (data: any) => any
create: (data: any) => any
update: (data: any) => any
delete: (data: any) => any
getChatRecords: (data: any) => any
sendFeedback: (data: any) => any
getFeedBack: (data: any) => any
getRecommendQuestions: (options: ICloudAICallbackOptions & ICloudBotOptions) => Promise<ICloudAIStreamResult>
sendMessage: (options: ICloudAICallbackOptions & ICloudBotOptions) => Promise<ICloudAIStreamResult>
}

interface ICloudBotOptions { data: any, botId: string, timeout?: number }
interface ICloudAIModel {
streamText: (opts: ICloudAIOptions & ICloudAICallbackOptions) => Promise<ICloudAIStreamResult>
generateText: (opts: ICloudAIOptions & ICloudAICallbackOptions) => Promise<string>
}
interface ICloudAIChatMessage {
role: 'user' | 'assistant' | string
content: string
}
interface ICloudAIChatModelInput {
model: string
messages: ICloudAIChatMessage[]
temperature?: number
top_p?: number
}
interface ICloudAIOptions{
data: ICloudAIChatModelInput
}
interface ICloudAIEvent {
event: string
id: string
data: string
json?: any
}

interface AsyncIterator<T> {
next(value?: any): Promise<IteratorResult<T>>
return?(value?: any): Promise<IteratorResult<T>>
throw?(e?: any): Promise<IteratorResult<T>>
[Symbol.asyncIterator](): AsyncIterableIterator<T>
}
interface ICloudAIStreamResult {
textStream: AsyncIterator<string>
eventStream: AsyncIterator<ICloudAIEvent>
abort?: () => void
}
// === end ===

// === API: uploadFile ===
interface UploadFileResult extends IAPISuccessParam {
fileID: string
Expand Down