Merge branch '0.4.0-valid' into '0.4.0'

0.4.0 valid

See merge request aliasrobotics/alias_research/cai!195
This commit is contained in:
Luis Javier Navarrete Lozano 2025-05-23 08:49:38 +00:00
commit 29b1fc8efe
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ dependencies = [
"numpy>=1.21, <3",
"pandas>=1.3, <3",
# core cai
"openai>=1.68.2",
"openai==1.75.0",
"pydantic>=2.10, <3",
"griffe>=1.5.6, <2",
"typing-extensions>=4.12.2, <5",

View File

@ -288,7 +288,7 @@ class CostTracker:
# Check if this is a local/free model
model_str = model_name.lower()
is_local_model = (
"alias" not in model_str and
"alias" not in model_str and
"ollama" in model_str or
"qwen" in model_str or
"llama" in model_str or