Skip to content

Commit b6cc3e3

Browse files
authored
Merge pull request #475 from DragonelRoland/main
gpt4mini, typo, sth else
2 parents de20f30 + 19af78c commit b6cc3e3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scrapegraphai/helpers/models_tokens.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"gpt-4-32k": 32768,
1717
"gpt-4-32k-0613": 32768,
1818
"gpt-4o": 128000,
19-
"gpt-4o-mini":128000,
19+
"gpt-4o-mini": 128000,
20+
2021
},
2122
"azure": {
2223
"gpt-3.5-turbo-0125": 16385,

scrapegraphai/nodes/conditional_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ConditionalNode(BaseNode):
1414
This node type is used to implement branching logic within the graph, allowing
1515
for dynamic paths based on the data available in the current state.
1616
17-
It is expected thar exactly two edges are created out of this node.
17+
It is expected that exactly two edges are created out of this node.
1818
The first node is chosen for execution if the key exists and has a non-empty value,
1919
and the second node is chosen if the key does not exist or is empty.
2020

0 commit comments

Comments
 (0)