We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ede29 commit ce4a1abCopy full SHA for ce4a1ab
comfy_api_nodes/nodes_openai.py
@@ -43,7 +43,6 @@ class SupportedOpenAIModel(str, Enum):
43
o1 = "o1"
44
o3 = "o3"
45
o1_pro = "o1-pro"
46
- gpt_4o = "gpt-4o"
47
gpt_4_1 = "gpt-4.1"
48
gpt_4_1_mini = "gpt-4.1-mini"
49
gpt_4_1_nano = "gpt-4.1-nano"
@@ -649,11 +648,6 @@ def define_schema(cls):
649
648
"usd": [0.01, 0.04],
650
"format": { "approximate": true, "separator": "-", "suffix": " per 1K tokens" }
651
}
652
- : $contains($m, "gpt-4o") ? {
653
- "type": "list_usd",
654
- "usd": [0.0025, 0.01],
655
- "format": { "approximate": true, "separator": "-", "suffix": " per 1K tokens" }
656
- }
657
: $contains($m, "gpt-4.1-nano") ? {
658
"type": "list_usd",
659
"usd": [0.0001, 0.0004],
0 commit comments