Skip to content

Commit d3cf7ce

Browse files
committed
Release 0.0.1
1 parent dd2f898 commit d3cf7ce

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Axiomatic Python Library
22

3-
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ffern-demo%2Faxiomatic-python-sdk)
3+
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Faxiomatic-ai%2Faxiomatic-python-sdk)
44
[![pypi](https://img.shields.io/pypi/v/axiomatic)](https://pypi.python.org/pypi/axiomatic)
55

66
The Axiomatic Python library provides convenient access to the Axiomatic API from Python.
@@ -84,7 +84,7 @@ Use the `max_retries` request option to configure this behavior.
8484
client.pic.extract(..., request_options={
8585
"max_retries": 1
8686
})
87-
```
87+
```
8888

8989
### Timeouts
9090

@@ -104,7 +104,7 @@ client = Axiomatic(
104104
client.pic.extract(..., request_options={
105105
"timeout_in_seconds": 1
106106
})
107-
```
107+
```
108108

109109
### Custom Client
110110

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "axiomatic"
3-
version = "0.0.3"
3+
version = "0.0.1"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -28,7 +28,7 @@ packages = [
2828
]
2929

3030
[project.urls]
31-
Repository = 'https://github.com/fern-demo/axiomatic-python-sdk'
31+
Repository = 'https://github.com/axiomatic-ai/axiomatic-python-sdk'
3232

3333
[tool.poetry.dependencies]
3434
python = "^3.8"

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.3",
19+
"X-Fern-SDK-Version": "0.0.1",
2020
}
2121
headers["x-api-key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)