Skip to content

Commit 6dacdbf

Browse files
committed
Release 0.0.106
1 parent be39824 commit 6dacdbf

File tree

6 files changed

+4
-74
lines changed

6 files changed

+4
-74
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "axiomatic"
33

44
[tool.poetry]
55
name = "axiomatic"
6-
version = "0.0.105"
6+
version = "0.0.106"
77
description = ""
88
readme = "README.md"
99
authors = []

src/axiomatic/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
PlotParserOutput,
5757
RefineCodeResponse,
5858
RefineComponentCodeResponse,
59-
ResponseEquation,
6059
ScheduleJobResponse,
6160
SolutionResponse,
6261
SolutionResponseSolutionValue,
@@ -148,7 +147,6 @@
148147
"PlotParserOutput",
149148
"RefineCodeResponse",
150149
"RefineComponentCodeResponse",
151-
"ResponseEquation",
152150
"ScheduleJobResponse",
153151
"SolutionResponse",
154152
"SolutionResponseSolutionValue",

src/axiomatic/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "axiomatic",
19-
"X-Fern-SDK-Version": "0.0.105",
19+
"X-Fern-SDK-Version": "0.0.106",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

src/axiomatic/types/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
from .plot_parser_output import PlotParserOutput
5656
from .refine_code_response import RefineCodeResponse
5757
from .refine_component_code_response import RefineComponentCodeResponse
58-
from .response_equation import ResponseEquation
5958
from .schedule_job_response import ScheduleJobResponse
6059
from .solution_response import SolutionResponse
6160
from .solution_response_solution_value import SolutionResponseSolutionValue
@@ -138,7 +137,6 @@
138137
"PlotParserOutput",
139138
"RefineCodeResponse",
140139
"RefineComponentCodeResponse",
141-
"ResponseEquation",
142140
"ScheduleJobResponse",
143141
"SolutionResponse",
144142
"SolutionResponseSolutionValue",

src/axiomatic/types/equation_processing_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
from ..core.pydantic_utilities import UniversalBaseModel
44
import typing
5-
from .response_equation import ResponseEquation
5+
from .equation_extraction import EquationExtraction
66
from ..core.pydantic_utilities import IS_PYDANTIC_V2
77
import pydantic
88

99

1010
class EquationProcessingResponse(UniversalBaseModel):
11-
equations: typing.List[ResponseEquation]
11+
equations: typing.List[EquationExtraction]
1212

1313
if IS_PYDANTIC_V2:
1414
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

src/axiomatic/types/response_equation.py

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)