Skip to content

Commit f1fa60d

Browse files
committed
Release 0.0.66
1 parent ee87efd commit f1fa60d

File tree

3 files changed

+4
-4
lines changed

3 files changed

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

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

src/axiomatic/types/optimization_history.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class OptimizationHistory(UniversalBaseModel):
1212
containing all the settings and costs.
1313
"""
1414

15-
all_settings: typing.List[typing.Dict[str, typing.Optional[typing.Any]]]
16-
all_costs: typing.List[typing.List[float]]
15+
parameters: typing.List[typing.Dict[str, typing.Optional[typing.Any]]]
16+
costs: typing.List[typing.List[float]]
1717

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

0 commit comments

Comments
 (0)