mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
translate provider & which windows can use the translate feat or not.
Not sure how can I intergrate it tho 🤔
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
export default async function loadUserInfo() {
|
|
return {
|
|
langPref: "en",
|
|
doNotShowLangPrefPopUp: false,
|
|
email: "test@yuanhau.com",
|
|
name: "Howard",
|
|
useCustomGroqKey: true,
|
|
translate: {
|
|
enabled: true,
|
|
lang: "en",
|
|
provider: "google",
|
|
},
|
|
};
|
|
}
|