chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -22,9 +22,9 @@ export enum Layout {
}
export interface HeaderConfig {
isShow?: boolean; //是否显示header 默认是true
isNeedClose?: boolean; //是否需要关闭按钮, 默认是true
extra?: ReactNode | false; // 用于站位的,默认无
isShow?: boolean; //Whether to display headers, the default is true
isNeedClose?: boolean; //Whether you need the close button, the default is true.
extra?: ReactNode | false; // For standing, default none
}
export interface DebugProps {

View File

@@ -34,12 +34,12 @@ export interface IWorkflow {
export interface IProject {
id: string;
type: 'app' | 'bot';
mode: 'draft' | 'release' | 'websdk' | 'audit'; // 草稿模式 | 发布模式 | webSdk发布
mode: 'draft' | 'release' | 'websdk' | 'audit'; // Draft Mode | Publish Mode | webSdk Publish
caller?: 'UI_BUILDER' | 'CANVAS';
connectorId?: string;
conversationName?: string; // project的话,必须填写
conversationId?: string; // type 为bot的话必须填写
sectionId?: string; // type 为bot的话必须填写
conversationName?: string; // Project must be filled in
conversationId?: string; // If the type is bot, it must be filled in
sectionId?: string; // If the type is bot, it must be filled in
name?: string;
defaultName?: string;
defaultIconUrl?: string;
@@ -68,28 +68,28 @@ export interface IBuilderChatProps {
eventCallbacks?: IEventCallbacks;
userInfo: IChatFlowProps['userInfo'];
areaUi: {
isDisabled?: boolean; // 默认 false
uploadable?: boolean; // 默认 true
isNeedClearContext?: boolean; // 是否显示 clearContext按钮
isNeedClearMessage?: boolean; // 是否显示 clearMessage按钮
isDisabled?: boolean; // Default false
uploadable?: boolean; // Default true
isNeedClearContext?: boolean; // Whether to display the clearContext button
isNeedClearMessage?: boolean; // Whether to display the clearMessage button
//isShowHeader?: boolean; // 默认 false
//isShowFooter?: boolean; // 默认 false
//isShowHeader?: boolean;//default false
//isShowFooter?: boolean;//default false
input?: {
placeholder?: string;
renderChatInputTopSlot?: (isChatError?: boolean) => React.ReactNode;
isShow?: boolean; //默认 true
isShow?: boolean; //Default true
defaultText?: string;
isNeedAudio?: boolean; // 是否需要语音输入,默认是false
isNeedAudio?: boolean; // Whether voice input is required, the default is false
isNeedTaskMessage?: boolean;
};
header?: HeaderConfig; // 默认是
header?: HeaderConfig; // Default is
footer?: FooterConfig;
uiTheme?: 'uiBuilder' | 'chatFlow'; // uiBuilder 的主题
uiTheme?: 'uiBuilder' | 'chatFlow'; // Theme for uiBuilder
renderLoading?: () => React.ReactNode;
};
auth?: {
type: 'external' | 'internal'; // 内部: cookie换token 外部: internal
type: 'external' | 'internal'; // Internal: cookie for token, external: internal
token?: string;
refreshToken?: () => Promise<string> | string;
};