Skip to content
Open
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
20 changes: 20 additions & 0 deletions src/module/Model/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,26 @@ export function getModelLogo(modelId: string) {
}

export const SystemModels: Record<string, Partial<Model>[]> = {
atlascloud: [
{
id: "deepseek-ai/deepseek-v4-pro",
provider: "atlascloud",
name: "DeepSeek V4 Pro",
group: "DeepSeek",
},
{
id: "deepseek-ai/deepseek-v4-flash",
provider: "atlascloud",
name: "DeepSeek V4 Flash",
group: "DeepSeek",
},
{
id: "qwen/qwen3.5-flash",
provider: "atlascloud",
name: "Qwen3.5 Flash",
group: "Qwen",
},
],
aihubmix: [
{
id: "gpt-4o",
Expand Down
15 changes: 13 additions & 2 deletions src/module/Model/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import { ModelProvider } from "./provider/provider";
import { Provider } from "./types";

const ProviderLogoMap = {

atlascloud: OpenAiProviderLogo,
openai: OpenAiProviderLogo,
silicon: SiliconFlowProviderLogo,
deepseek: DeepSeekProviderLogo,
Expand Down Expand Up @@ -110,7 +110,7 @@ export function getProviderUrl(provider: Provider) {

export const getProviderTitle = (providerId: string) => {
const map: Record<string, string> = {

atlascloud: "Atlas Cloud",
aihubmix: "AiHubMix",
alayanew: "Alaya NeW",
anthropic: "Anthropic",
Expand Down Expand Up @@ -162,6 +162,17 @@ export const getProviderTitle = (providerId: string) => {
};

export const SystemProviders = {
atlascloud: {
api: {
url: "https://api.atlascloud.ai/v1/",
},
websites: {
official: "https://www.atlascloud.ai/",
apiKey: "https://www.atlascloud.ai/console/api-keys",
docs: "https://www.atlascloud.ai/docs",
models: "https://www.atlascloud.ai/models",
},
},
openai: {
api: {
url: "https://api.openai.com",
Expand Down