From a80bec3776b3e4b6474a690fdfad4c4179b73fb9 Mon Sep 17 00:00:00 2001 From: fhennerkes Date: Sat, 13 Dec 2025 23:45:58 -0800 Subject: [PATCH 1/2] poe: add 7 new models Add new Poe models: - gemini-deep-research (Google) - deepseek-v3.2 (Novita) - gpt-5.1-codex-max (OpenAI) - gpt-5.2 (OpenAI) - gpt-5.2-instant (OpenAI) - gpt-5.2-pro (OpenAI) - claude-code (Poe Tools) --- .../models/google/gemini-deep-research.toml | 20 ++++++++++++++++++ .../poe/models/novita/deepseek-v3.2.toml | 16 ++++++++++++++ .../poe/models/openai/gpt-5.1-codex-max.toml | 21 +++++++++++++++++++ .../poe/models/openai/gpt-5.2-instant.toml | 21 +++++++++++++++++++ providers/poe/models/openai/gpt-5.2-pro.toml | 20 ++++++++++++++++++ providers/poe/models/openai/gpt-5.2.toml | 21 +++++++++++++++++++ .../poe/models/poetools/claude-code.toml | 16 ++++++++++++++ 7 files changed, 135 insertions(+) create mode 100644 providers/poe/models/google/gemini-deep-research.toml create mode 100644 providers/poe/models/novita/deepseek-v3.2.toml create mode 100644 providers/poe/models/openai/gpt-5.1-codex-max.toml create mode 100644 providers/poe/models/openai/gpt-5.2-instant.toml create mode 100644 providers/poe/models/openai/gpt-5.2-pro.toml create mode 100644 providers/poe/models/openai/gpt-5.2.toml create mode 100644 providers/poe/models/poetools/claude-code.toml diff --git a/providers/poe/models/google/gemini-deep-research.toml b/providers/poe/models/google/gemini-deep-research.toml new file mode 100644 index 000000000..365e92deb --- /dev/null +++ b/providers/poe/models/google/gemini-deep-research.toml @@ -0,0 +1,20 @@ +name = "gemini-deep-research" +release_date = "2025-12-11" +last_updated = "2025-12-11" +attachment = true +reasoning = true +temperature = false +open_weights = false +tool_call = true + +[cost] +input = 1.6 +output = 9.6 + +[limit] +context = 1_048_576 +output = 0 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/poe/models/novita/deepseek-v3.2.toml b/providers/poe/models/novita/deepseek-v3.2.toml new file mode 100644 index 000000000..da0bb1cf3 --- /dev/null +++ b/providers/poe/models/novita/deepseek-v3.2.toml @@ -0,0 +1,16 @@ +name = "deepseek-v3.2" +release_date = "2025-12-01" +last_updated = "2025-12-01" +attachment = true +reasoning = false +temperature = false +open_weights = false +tool_call = true + +[limit] +context = 0 +output = 0 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/poe/models/openai/gpt-5.1-codex-max.toml b/providers/poe/models/openai/gpt-5.1-codex-max.toml new file mode 100644 index 000000000..61026213e --- /dev/null +++ b/providers/poe/models/openai/gpt-5.1-codex-max.toml @@ -0,0 +1,21 @@ +name = "gpt-5.1-codex-max" +release_date = "2025-12-08" +last_updated = "2025-12-08" +attachment = true +reasoning = true +temperature = false +open_weights = false +tool_call = true + +[cost] +input = 1.1 +output = 9 +cache_read = 0.11 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/poe/models/openai/gpt-5.2-instant.toml b/providers/poe/models/openai/gpt-5.2-instant.toml new file mode 100644 index 000000000..73d8dc3ec --- /dev/null +++ b/providers/poe/models/openai/gpt-5.2-instant.toml @@ -0,0 +1,21 @@ +name = "gpt-5.2-instant" +release_date = "2025-12-11" +last_updated = "2025-12-11" +attachment = true +reasoning = false +temperature = false +open_weights = false +tool_call = true + +[cost] +input = 1.6 +output = 13 +cache_read = 0.16 + +[limit] +context = 128_000 +output = 16_384 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/poe/models/openai/gpt-5.2-pro.toml b/providers/poe/models/openai/gpt-5.2-pro.toml new file mode 100644 index 000000000..b12322d6d --- /dev/null +++ b/providers/poe/models/openai/gpt-5.2-pro.toml @@ -0,0 +1,20 @@ +name = "gpt-5.2-pro" +release_date = "2025-12-11" +last_updated = "2025-12-11" +attachment = true +reasoning = true +temperature = false +open_weights = false +tool_call = true + +[cost] +input = 19 +output = 150 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/poe/models/openai/gpt-5.2.toml b/providers/poe/models/openai/gpt-5.2.toml new file mode 100644 index 000000000..988fc1d6b --- /dev/null +++ b/providers/poe/models/openai/gpt-5.2.toml @@ -0,0 +1,21 @@ +name = "gpt-5.2" +release_date = "2025-12-08" +last_updated = "2025-12-08" +attachment = true +reasoning = true +temperature = false +open_weights = false +tool_call = true + +[cost] +input = 1.6 +output = 13 +cache_read = 0.16 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/poe/models/poetools/claude-code.toml b/providers/poe/models/poetools/claude-code.toml new file mode 100644 index 000000000..dd05833b1 --- /dev/null +++ b/providers/poe/models/poetools/claude-code.toml @@ -0,0 +1,16 @@ +name = "claude-code" +release_date = "2025-11-27" +last_updated = "2025-11-27" +attachment = true +reasoning = true +temperature = false +open_weights = false +tool_call = true + +[limit] +context = 0 +output = 0 + +[modalities] +input = ["text"] +output = ["text"] From c963c1ef4d2d72fe5baa4af24fe0b30bbbf7f516 Mon Sep 17 00:00:00 2001 From: fhennerkes Date: Mon, 15 Dec 2025 12:24:04 -0800 Subject: [PATCH 2/2] Poe: remove deepseek-v3.2 --- providers/poe/models/novita/deepseek-v3.2.toml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 providers/poe/models/novita/deepseek-v3.2.toml diff --git a/providers/poe/models/novita/deepseek-v3.2.toml b/providers/poe/models/novita/deepseek-v3.2.toml deleted file mode 100644 index da0bb1cf3..000000000 --- a/providers/poe/models/novita/deepseek-v3.2.toml +++ /dev/null @@ -1,16 +0,0 @@ -name = "deepseek-v3.2" -release_date = "2025-12-01" -last_updated = "2025-12-01" -attachment = true -reasoning = false -temperature = false -open_weights = false -tool_call = true - -[limit] -context = 0 -output = 0 - -[modalities] -input = ["text"] -output = ["text"]