You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[LLM](https://llm.datasette.io/) plugin for [OpenAI models](https://platform.openai.com/docs/models).
9
9
10
-
> [!WARNING]
11
-
> This is a very early alpha.
10
+
This plugin **is a preview**. LLM currently ships with OpenAI models as part of its default collection, implemented using the [Chat Completions API](https://platform.openai.com/docs/guides/responses-vs-chat-completions).
11
+
12
+
This plugin implements those same models using the new [Responses API](https://platform.openai.com/docs/api-reference/responses).
13
+
14
+
Currently the only reason to use this plugin over the LLM defaults is to access [o1-pro](https://platform.openai.com/docs/models/o1-pro), which can only be used via the Responses API.
12
15
13
16
## Installation
14
17
@@ -18,7 +21,13 @@ llm install llm-openai-plugin
18
21
```
19
22
## Usage
20
23
21
-
Run this to see the models - they start with the `openai/` prefix:
24
+
To run a prompt against `o1-pro` do this:
25
+
26
+
```bash
27
+
llm -m openai/o1-pro "Convince me that pelicans are the most noble of birds"
28
+
```
29
+
30
+
Run this to see a full list of models - they start with the `openai/` prefix:
0 commit comments