8df6621a by Janis

Merge branch '27199_gpt4' into 'master'

27199_gpt4

See merge request !51
2 parents bfa168cd d2aebddc
......@@ -47,7 +47,9 @@ function App() {
let model_list = [];
for( var i = 1; i < data.models.data.length; i++ ) {
let model = data.models.data[i];
if(model.id != "whisper-1") model_list.push(model);
if( !(model.id == "whisper-1"
|| model.id == "gpt-4"
|| model.id == "gpt-4-0314") ) model_list.push(model);
}
setModels(model_list)
})
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!