File size: 720 Bytes
ac91c3d
 
a605ca0
ac91c3d
 
a605ca0
8e0957b
 
ac91c3d
1538aa3
ac91c3d
1538aa3
 
 
 
 
 
 
 
8e0957b
a605ca0
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// @ts-expect-error this is custom
const TTS_SPACE_ID = window.huggingface?.variables?.TTS_SPACE_ID;

// @ts-expect-error this is custom
const LLM_ENDPOINT = window.huggingface?.variables?.LLM_ENDPOINT;

export const CONFIG = {
  llmEndpoint:
    LLM_ENDPOINT ||
    'https://router.huggingface.co/hf-inference/v1/chat/completions',
  ttsSpaceId: TTS_SPACE_ID || 'ngxson/kokoro-podcast-backend',
  inferenceProviderModels: [
    //'deepseek-ai/DeepSeek-R1-Distill-Qwen-14B',
    //'deepseek-ai/DeepSeek-R1-Distill-Llama-8B',
    //'deepseek-ai/DeepSeek-R1-Distill-Qwen-7B',
    'deepseek-ai/DeepSeek-R1',
    'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
  ],
  inferenceProvider: 'together',
};

console.log({ CONFIG });