From ea0024496ac7b6a475ae8314eca73c0607d0ac53 Mon Sep 17 00:00:00 2001 From: Roman Pavelka Date: Mon, 27 Apr 2026 14:08:41 +0200 Subject: [PATCH] Add GPT-5.5 pricing --- libopenai/pricing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libopenai/pricing.py b/libopenai/pricing.py index 5421006..4bdc6c4 100644 --- a/libopenai/pricing.py +++ b/libopenai/pricing.py @@ -22,6 +22,7 @@ class Pricing: "gpt-5.4-mini": Pricing(0.75e-6, 4.5e-6), "gpt-5.4": Pricing(2.5e-6, 15e-6), "gpt-5.4-pro": Pricing(30e-6, 180e-6), + "gpt-5.5": Pricing(5e-6, 30e-6), } KNOWN_MODELS = sorted(USD_PER_TOKEN.keys())