feat: add new SVG assets for file icons, LLM providers, and UI elements

This commit is contained in:
2025-10-21 16:41:22 +08:00
parent 6ca5e235b4
commit 504156fb95
220 changed files with 17943 additions and 23 deletions

View File

@@ -18,23 +18,43 @@ export interface IThirdOAIModel {
export type IThirdOAIModelCollection = Record<string, IThirdOAIModel[]>;
/**
* 模型工厂
{
"create_date": "Sun, 28 Sep 2025 11:30:34 GMT",
"create_time": 1759030234446,
"logo": "",
"model_types": [
"chat",
"image2text"
],
"name": "01.AI",
"status": "1",
"tags": "LLM,IMAGE2TEXT",
"update_date": "Sun, 28 Sep 2025 11:30:34 GMT",
"update_time": 1759030234446
}
*/
export interface IFactory {
create_date: string;
create_time: number;
logo: string;
name: string;
status: string;
model_types: string[];
tags: string;
update_date: string;
update_time: number;
}
export interface IMyLlmValue {
llm: Llm[];
export interface IMyLlmModel {
llm: ILlmItem[];
tags: string;
}
export interface Llm {
export interface ILlmItem {
api_base: string;
max_tokens: number;
name: string;
type: string;
used_token: number;