Skip to content

Commit ecf0535

Browse files
committed
Release 0.0.118
1 parent 00b6a74 commit ecf0535

File tree

7 files changed

+5
-52
lines changed

7 files changed

+5
-52
lines changed

client_db.pkl

-9.4 KB
Binary file not shown.

pyproject.toml

+1-1
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.117"
6+
version = "0.0.118"
77
description = ""
88
readme = "README.md"
99
authors = []

src/axiomatic/core/client_wrapper.py

+1-1
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.117",
19+
"X-Fern-SDK-Version": "0.0.118",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

src/axiomatic/document/equation/client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from ...types.equation_extraction_response import EquationExtractionResponse
1616
from ...types.equation_processing_response import EquationProcessingResponse
1717
from ...core.client_wrapper import AsyncClientWrapper
18-
from ...types.validate_equations_body import ValidateEquationsBody
18+
1919
# this is used as the default value for optional parameters
2020
OMIT = typing.cast(typing.Any, ...)
2121

@@ -67,7 +67,7 @@ def user_variables(self, *, request_options: typing.Optional[RequestOptions] = N
6767
raise ApiError(status_code=_response.status_code, body=_response_json)
6868

6969
def validate(
70-
self, *, request: ValidateEquationsBody, request_options: typing.Optional[RequestOptions] = None
70+
self, *, request: typing.Sequence[VariableRequirement], request_options: typing.Optional[RequestOptions] = None
7171
) -> EquationValidationResult:
7272
"""
7373
Validates a set of variables against stored equations to check for inconsistencies.

src/axiomatic/types/equation_processing.py

-38
This file was deleted.

src/axiomatic/types/equation_processing_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

src/axiomatic/types/validate_equations_body.py

-9
This file was deleted.

0 commit comments

Comments
 (0)