Spaces:
Sleeping
Sleeping
File size: 630 Bytes
26ab438 3cb3466 26ab438 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
const appModel = {
api_url: "",
api_key: "",
voice_button_id: "whisper_voice_button",
transcribeProvider: "lepton_whisper",
language: "",
supportedInputTypeList: ["text", "number", "tel", "search", "url", "email"],
buttonBackgroundColor: "lightblue",
minimalRecordTime: 2000,
keepButtonAliveInterval: 0,
isRecording: false,
llm_model_info: {
url: '/openai/v1/chat/completions',
model: 'llama3-70b-8192',
max_tokens:8000,
},
zIndex: {
highest: 999999,
higher: 99999,
high: 9999,
medium: 999
},
apiKey: {
'flowgpt': '',
}
};
export {appModel} |