From 3384db22abb51a0accf9e0fb81c2898a6b362f7c Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Tue, 19 Aug 2025 15:38:32 -0700 Subject: [PATCH] README.md: regenerate plugin list, add cog instructions --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 6f18285..102d223 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,12 @@ OpenAI: openai/o4-mini OpenAI: openai/o4-mini-2025-04-16 OpenAI: openai/codex-mini-latest OpenAI: openai/o3-pro +OpenAI: openai/gpt-5 +OpenAI: openai/gpt-5-mini +OpenAI: openai/gpt-5-nano +OpenAI: openai/gpt-5-2025-08-07 +OpenAI: openai/gpt-5-mini-2025-08-07 +OpenAI: openai/gpt-5-nano-2025-08-07 ``` Add `--options` to see a full list of options that can be provided to each model. @@ -98,3 +104,12 @@ If you add a new test that calls the API you can capture the API response and sn PYTEST_OPENAI_API_KEY="$(llm keys get openai)" pytest --record-mode once --snapshot-update ``` Then review the new snapshots in `tests/__snapshots__/` to make sure they look correct. + +#### README + +The list of plugins in the README is kept up to date using `cog`. To regenerate: + +```bash +pip install cogapp +cog -r README.md +```