Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
added new models and new ordering related to OpenAI playground
  • Loading branch information
florian-kalisch authored Aug 17, 2024
1 parent 8d8eca4 commit 9cb03b0
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
const [selectedNodeId, setSelectedNodeId] = useState(null);
const [selectedEdgeId, setSelectedEdgeId] = useState(null);
const [apiKey, setApiKey] = useState('');
const [model, setModel] = useState('gpt-3.5-turbo');
const [model, setModel] = useState('gpt-4o-mini');
const [mode, setMode] = useState('answer');
const [choices, setChoices] = useState(1);
const [isModalOpen, setIsModalOpen] = useState(false);
Expand Down Expand Up @@ -811,11 +811,14 @@
React.createElement('option', { value: 3 }, '3 Answers')
),
React.createElement('select', { value: model, onChange: (e) => setModel(e.target.value) },
React.createElement('option', { value: 'gpt-3.5-turbo' }, 'GPT-3.5 Turbo'),
React.createElement('option', { value: 'gpt-3.5-turbo-16k' }, 'GPT-3.5 Turbo 16k'),
React.createElement('option', { value: 'gpt-4' }, 'GPT-4'),
React.createElement('option', { value: 'gpt-4o-mini' }, 'gpt-4o-mini'),
React.createElement('option', { value: 'gpt-4o' }, 'gpt-4o'),
React.createElement('option', { value: 'gpt-4-turbo' }, 'GPT-4 Turbo')
React.createElement('option', { value: 'gpt-4-turbo' }, 'gpt-4-turbo'),
React.createElement('option', { value: 'gpt-4' }, 'gpt-4'),
React.createElement('option', { value: 'gpt-3.5-turbo' }, 'gpt-3.5-turbo'),
React.createElement('option', { value: 'gpt-4o-2024-08-06' }, 'gpt-4o-2024-08-06'),
React.createElement('option', { value: 'gpt-3.5-turbo-16k' }, 'gpt-3.5-turbo-16k'),
React.createElement('option', { value: 'chatgpt-4o-latest' }, 'chatgpt-4o-latest')
),
React.createElement('select', { value: edgeType, onChange: (e) => setEdgeType(e.target.value) },
React.createElement('option', { value: "default" }, 'default'),
Expand Down

0 comments on commit 9cb03b0

Please sign in to comment.