mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-05-24 07:30:52 +08:00
10 lines
377 B
TypeScript
10 lines
377 B
TypeScript
/**
|
|
* 根据 locale 选择默认通用助手。
|
|
* 默认助手的选择应发生在知道用户语言的上层,而不是存储层。
|
|
*/
|
|
export function getDefaultGeneralAssistantId(locale?: string): 'general_cn' | 'general_en' | 'general_ja' {
|
|
if (locale?.startsWith('en')) return 'general_en'
|
|
if (locale?.startsWith('ja')) return 'general_ja'
|
|
return 'general_cn'
|
|
}
|