Skip to content

Commit 85a28d8

Browse files
committed
Release 0.0.141
1 parent 35a263f commit 85a28d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1571
-162
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ from axiomatic import Axiomatic
2525
client = Axiomatic(
2626
api_key="YOUR_API_KEY",
2727
)
28-
client.lean.execute(
29-
code="code",
28+
client.lean.formalize(
29+
query="query",
3030
)
3131
```
3232

@@ -45,8 +45,8 @@ client = AsyncAxiomatic(
4545

4646

4747
async def main() -> None:
48-
await client.lean.execute(
49-
code="code",
48+
await client.lean.formalize(
49+
query="query",
5050
)
5151

5252

@@ -62,7 +62,7 @@ will be thrown.
6262
from axiomatic.core.api_error import ApiError
6363

6464
try:
65-
client.lean.execute(...)
65+
client.lean.formalize(...)
6666
except ApiError as e:
6767
print(e.status_code)
6868
print(e.body)
@@ -85,7 +85,7 @@ A request is deemed retryable when any of the following HTTP status codes is ret
8585
Use the `max_retries` request option to configure this behavior.
8686

8787
```python
88-
client.lean.execute(..., request_options={
88+
client.lean.formalize(..., request_options={
8989
"max_retries": 1
9090
})
9191
```
@@ -105,7 +105,7 @@ client = Axiomatic(
105105

106106

107107
# Override timeout for a specific method
108-
client.lean.execute(..., request_options={
108+
client.lean.formalize(..., request_options={
109109
"timeout_in_seconds": 1
110110
})
111111
```

poetry.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

0 commit comments

Comments
 (0)