feat(alibaba): Added alibaba vision model and omni model support

This commit is contained in:
EvanWu
2025-02-24 20:18:07 +08:00
parent f5f3ce94f6
commit b709ee3983
4 changed files with 62 additions and 13 deletions

View File

@@ -40,6 +40,11 @@ export interface MultimodalContent {
};
}
export interface MultimodalContentForAlibaba {
text?: string;
image?: string;
}
export interface RequestMessage {
role: MessageRole;
content: string | MultimodalContent[];