Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"@c-x/ui": "^1.0.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@monaco-editor/react": "4.7.0-rc.0",
"@mui/icons-material": "^6.4.12",
"@mui/lab": "6.0.0-beta.19",
"@mui/material": "^6.4.12",
Expand Down
34 changes: 34 additions & 0 deletions ui/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 18 additions & 3 deletions ui/src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export interface DomainCompletionInfo {
content?: string;
created_at?: number;
id?: string;
prompt?: string;
}

export interface DomainCompletionRecord {
Expand Down Expand Up @@ -330,11 +331,13 @@ export interface DomainProviderModel {

export interface DomainRegisterReq {
/** 邀请码 */
code?: string;
code: string;
/** 邮箱 */
email?: string;
email: string;
/** 密码 */
password?: string;
password: string;
/** 用户名 */
username: string;
}

export interface DomainSetting {
Expand Down Expand Up @@ -585,6 +588,12 @@ export interface GetChatInfoParams {
}

export interface GetListChatRecordParams {
/** 作者 */
author?: string;
/** 是否接受筛选 */
is_accept?: boolean;
/** 语言 */
language?: string;
/** 下一页标识 */
next_token?: string;
/** 分页 */
Expand All @@ -599,6 +608,12 @@ export interface GetCompletionInfoParams {
}

export interface GetListCompletionRecordParams {
/** 作者 */
author?: string;
/** 是否接受筛选 */
is_accept?: boolean;
/** 语言 */
language?: string;
/** 下一页标识 */
next_token?: string;
/** 分页 */
Expand Down
2 changes: 1 addition & 1 deletion ui/src/assets/fonts/iconfont.js

Large diffs are not rendered by default.

Loading