We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22956ab commit 62f82baCopy full SHA for 62f82ba
src/axiomatic/axtract/models.py
@@ -1,4 +1,5 @@
1
from pydantic import BaseModel
2
+from typing import List
3
4
5
class DictItem(BaseModel):
@@ -11,12 +12,12 @@ class EquationExtraction(BaseModel):
11
12
name: str
13
description: str
14
original_format: str
- latex_symbols: list[DictItem]
15
- narrative_assumptions: list[str]
+ latex_symbols: List[DictItem]
16
+ narrative_assumptions: List[str]
17
18
19
class EquationExtractionResponse(BaseModel):
- equations: list[EquationExtraction]
20
+ equations: List[EquationExtraction]
21
22
23
class VariableRequirement(BaseModel):
0 commit comments