Spaces:
Running
Running
Commit
·
b7aa617
1
Parent(s):
0b23e94
add
Browse files
agentgraph/methods/production/openai_structured_extractor.py
CHANGED
|
@@ -330,7 +330,7 @@ def extract_knowledge_graph(input_data: str) -> KnowledgeGraph:
|
|
| 330 |
class OpenAIStructuredFactory:
|
| 331 |
"""Factory class for OpenAI structured extraction method."""
|
| 332 |
|
| 333 |
-
def __init__(self, model: str = "gpt-
|
| 334 |
self.model = model
|
| 335 |
self.extractor = OpenAIStructuredExtractor(model)
|
| 336 |
|
|
|
|
| 330 |
class OpenAIStructuredFactory:
|
| 331 |
"""Factory class for OpenAI structured extraction method."""
|
| 332 |
|
| 333 |
+
def __init__(self, model: str = "gpt-5-mini"):
|
| 334 |
self.model = model
|
| 335 |
self.extractor = OpenAIStructuredExtractor(model)
|
| 336 |
|