From 9009a7444068492459bc0d4d43d17c03d5f316ef Mon Sep 17 00:00:00 2001 From: Dan Hernandez <33551757+danfhernandez@users.noreply.github.com> Date: Thu, 26 Jun 2025 15:05:59 -0400 Subject: [PATCH] feat: add OpenAI o3-deep-research and o4-mini-deep-research models --- providers/openai/models/o3-deep-research.toml | 22 +++++++++++++++++++ .../openai/models/o4-mini-deep-research.toml | 22 +++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 providers/openai/models/o3-deep-research.toml create mode 100644 providers/openai/models/o4-mini-deep-research.toml diff --git a/providers/openai/models/o3-deep-research.toml b/providers/openai/models/o3-deep-research.toml new file mode 100644 index 0000000..15a4d7d --- /dev/null +++ b/providers/openai/models/o3-deep-research.toml @@ -0,0 +1,22 @@ +name = "o3-deep-research" +release_date = "2024-06-26" +last_updated = "2024-06-26" +attachment = true +reasoning = true +temperature = false +knowledge = "2024-05" +tool_call = true +open_weights = false + +[cost] +input = 10.00 +output = 40.00 +cache_read = 2.50 + +[limit] +context = 200_000 +output = 100_000 + +[modalities] +input = ["text", "image"] +output = ["text"] \ No newline at end of file diff --git a/providers/openai/models/o4-mini-deep-research.toml b/providers/openai/models/o4-mini-deep-research.toml new file mode 100644 index 0000000..5c48f08 --- /dev/null +++ b/providers/openai/models/o4-mini-deep-research.toml @@ -0,0 +1,22 @@ +name = "o4-mini-deep-research" +release_date = "2024-06-26" +last_updated = "2024-06-26" +attachment = true +reasoning = true +temperature = false +knowledge = "2024-05" +tool_call = true +open_weights = false + +[cost] +input = 2.00 +output = 8.00 +cache_read = 0.50 + +[limit] +context = 200_000 +output = 100_000 + +[modalities] +input = ["text", "image"] +output = ["text"] \ No newline at end of file