bunch more models.
modified: app.py modified: templates/base.html modified: templates/chat.html
This commit is contained in:
parent
9c44b23758
commit
91d6192192
3 changed files with 48 additions and 12 deletions
|
|
@ -24,11 +24,14 @@
|
|||
<label for="model-select">Model</label>
|
||||
<select id="model-select">
|
||||
<option value="None">None</option>
|
||||
<option value="vllm/hermes">vllm/hermes</option>
|
||||
<option value="vllm/qwq">vllm/qwq</option>
|
||||
<option value="ollama/qwen-coder">ollama/qwen-coder</option>
|
||||
<option value="ollama/deepseek-coder">ollama/deepseek-coder</option>
|
||||
<option value="gemini-flash">gemini-flash</option>
|
||||
<option value="gemini-flash-8b">gemini-flash-8b</option>
|
||||
<option value="gemini-pro">gemini-pro</option>
|
||||
<option value="grok-beta">grok-beta</option>
|
||||
<option value="vllm/hermes-llama-3">vllm/hermes-llama-3</option>
|
||||
<option value="gpt-4">gpt-4</option>
|
||||
<option value="gpt-4o-2024-08-06">gpt-4o-2024-08-06</option>
|
||||
<option value="gpt-mini">gpt-mini</option>
|
||||
|
|
@ -79,8 +82,9 @@ const room_name = "{{ room_name }}";
|
|||
const VALID_VOICES = ['alloy', 'echo', 'fable', 'onyx', 'nova', 'shimmer'];
|
||||
const VALID_MODELS = [
|
||||
'None', 'gemini-flash', 'gemini-flash-8b', 'gemini-pro', 'grok-beta',
|
||||
'vllm/hermes-llama-3', 'gpt-4', 'gpt-4o-2024-08-06', 'gpt-mini',
|
||||
'gpt-o1-mini', 'claude-haiku', 'claude-sonnet', 'claude-opus', 'dall-e-3'
|
||||
'vllm/hermes', 'vllm/qwq', 'ollama/qwen-coder', 'ollama/deepseek-coder',
|
||||
'gpt-4', 'gpt-4o-2024-08-06', 'gpt-mini', 'gpt-o1-mini', 'claude-haiku',
|
||||
'claude-sonnet', 'claude-opus', 'dall-e-3'
|
||||
];
|
||||
|
||||
// Configuration for DOMPurify to specify which tags and attributes are allowed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue