Skip to content

Commit

Permalink
Adding o1 to release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmartial committed Dec 17, 2024
1 parent 197b361 commit 57eed2a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1>OpenAI WebUI</h1>

Latest version: 0.9.9 (20241206)
Latest version: 0.9.10 (20241217)

- [1. Description](#1-description)
- [1.1. Supported models](#11-supported-models)
Expand Down Expand Up @@ -104,9 +104,14 @@ The following table shows the [models](https://platform.openai.com/docs/models/)
| GPT | o1-preview-2024-09-12 | active | | `beta` | 0.9.9 |
| GPT | o1-mini | active | | `beta` | 0.9.8 |
| GPT | o1-mini-2024-09-12 | active | | `beta` | 0.9.9 |
| GPT | o1 | active | | vision | `beta` + `untested` | 0.9.10 |
| GPT | o1-2024-12-17 | active | | vision | `beta` + `untested` | 0.9.10 |


`beta` models provide limited control over features or capabilities. Those currently also do not support `system` role: if using `prompt presets` those might not work.

An `untested` model is added but is not able to be tested by the development team until we get access to the model (currently open to [Tier 5](https://platform.openai.com/docs/guides/rate-limits#usage-tiers) customers)

Once a model is `deprecated`, using it in your models list will have it discarded from the available list with a notification.

Similarly, if a used model is listed as `legacy`, a notification of the upcoming deprecation will be shown in the UI.
Expand Down Expand Up @@ -351,7 +356,8 @@ For example, if your `appdata` location for the OpenAI WebUI was `/mnt/user/appd
## 3.2. Version information/Changelog
- v0.9.9 (20241206): API changes to use `o1-mini`
- v0.9.10 (20241217): Added `o1` model (untested) following its API access availability
- v0.9.9 (20241206): API changes to use `o1-mini` and `o1-preview` (tested)
- v0.9.8 (20241010): Added `o1-preview` and `o1-mini` model (untested) + "prompt presets" functionalities
- v0.9.7 (20240718): Added `gpt-4o-mini` and `deprecated` older `32k` models
- v0.9.6 (20240701): Added method to disable `vision` for capable models + added whole WebUI password protection using streamlit's `secrets.toml` method
Expand Down
22 changes: 22 additions & 0 deletions models.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,28 @@
"capability": "",
"beta_model": true
},
"o1":
{
"label": "o1: reasoning model designed to solve hard problems across domains. o1 series of large language models are trained with reinforcement learning to perform complex reasoning. o1 models think before they answer, producing a long internal chain of thought before responding to the user. o1 model supports both text and image inputs, and produces text outputs (including Structured Outputs). Points to: o1-2024-12-17",
"max_token": 100000,
"context_token": 200000,
"data": "Unlisted (as of 20241217)",
"status": "active",
"status_details": "beta model: limited control of features and capabilities. Does not support system role. For details, see https://platform.openai.com/docs/guides/reasoning",
"capability": "vision",
"beta_model": true
},
"o1-2024-12-17":
{
"label": "o1: reasoning model designed to solve hard problems across domains. o1 series of large language models are trained with reinforcement learning to perform complex reasoning. o1 models think before they answer, producing a long internal chain of thought before responding to the user.",
"max_token": 100000,
"context_token": 200000,
"data": "Unlisted (as of 20241217)",
"status": "active",
"status_details": "beta model: limited control of features and capabilities. Does not support system role. For details, see https://platform.openai.com/docs/guides/reasoning",
"capability": "vision",
"beta_model": true
},
"gpt-4-turbo":
{
"label": "The latest GPT-4 Turbo model with vision capabilities. Currently points to gpt-4-turbo-2024-04-09.",
Expand Down

0 comments on commit 57eed2a

Please sign in to comment.