From b91020ce56e88a75c0eb7544a2d3f61bfc77cb57 Mon Sep 17 00:00:00 2001 From: Kernick Date: Thu, 18 Jul 2024 21:03:55 +0300 Subject: [PATCH] Update models_tokens.py with gpt-4o-mini OpenAI added a new available model - gpt-4o-mini. Adding this model to the supported models, so it would be possible to use it with the Scrapegraph-ai. --- scrapegraphai/helpers/models_tokens.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrapegraphai/helpers/models_tokens.py b/scrapegraphai/helpers/models_tokens.py index 0ef10277..d708f7db 100644 --- a/scrapegraphai/helpers/models_tokens.py +++ b/scrapegraphai/helpers/models_tokens.py @@ -16,6 +16,7 @@ models_tokens = { "gpt-4-32k": 32768, "gpt-4-32k-0613": 32768, "gpt-4o": 128000, + "gpt-40-mini":128000, }, "azure": { "gpt-3.5-turbo": 4096,