Spaces:
Sleeping
Sleeping
| 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} |