Skip to content

Commit 03d17bb

Browse files
feat(api): update via SDK Studio (#14)
1 parent 5799893 commit 03d17bb

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to PyPI in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/ZeroEntropy-AI/zeroentropy-python/actions/workflows/publish-pypi.yml
3+
# You can run this workflow by navigating to https://www.github.com/zeroentropy-ai/zeroentropy-python/actions/workflows/publish-pypi.yml
44
name: Publish PyPI
55
on:
66
workflow_dispatch:

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'ZeroEntropy-AI/zeroentropy-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'zeroentropy-ai/zeroentropy-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ If you’d like to use the repository from source, you can either install from g
6363
To install via git:
6464

6565
```sh
66-
$ pip install git+ssh://[email protected]/ZeroEntropy-AI/zeroentropy-python.git
66+
$ pip install git+ssh://[email protected]/zeroentropy-ai/zeroentropy-python.git
6767
```
6868

6969
Alternatively, you can build from source and install the wheel file:
@@ -121,7 +121,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
121121

122122
### Publish with a GitHub workflow
123123

124-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/ZeroEntropy-AI/zeroentropy-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
124+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/zeroentropy-ai/zeroentropy-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
125125

126126
### Publish manually
127127

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ status = response.parse() # get the object that `status.get_status()` would hav
286286
print(status.num_documents)
287287
```
288288

289-
These methods return an [`APIResponse`](https://github.com/ZeroEntropy-AI/zeroentropy-python/tree/main/src/zeroentropy/_response.py) object.
289+
These methods return an [`APIResponse`](https://github.com/zeroentropy-ai/zeroentropy-python/tree/main/src/zeroentropy/_response.py) object.
290290

291-
The async client returns an [`AsyncAPIResponse`](https://github.com/ZeroEntropy-AI/zeroentropy-python/tree/main/src/zeroentropy/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
291+
The async client returns an [`AsyncAPIResponse`](https://github.com/zeroentropy-ai/zeroentropy-python/tree/main/src/zeroentropy/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
292292

293293
#### `.with_streaming_response`
294294

@@ -392,7 +392,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
392392

393393
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
394394

395-
We are keen for your feedback; please open an [issue](https://www.github.com/ZeroEntropy-AI/zeroentropy-python/issues) with questions, bugs, or suggestions.
395+
We are keen for your feedback; please open an [issue](https://www.github.com/zeroentropy-ai/zeroentropy-python/issues) with questions, bugs, or suggestions.
396396

397397
### Determining the installed version
398398

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ classifiers = [
3434
]
3535

3636
[project.urls]
37-
Homepage = "https://github.com/ZeroEntropy-AI/zeroentropy-python"
38-
Repository = "https://github.com/ZeroEntropy-AI/zeroentropy-python"
37+
Homepage = "https://github.com/zeroentropy-ai/zeroentropy-python"
38+
Repository = "https://github.com/zeroentropy-ai/zeroentropy-python"
3939

4040

4141

@@ -122,7 +122,7 @@ path = "README.md"
122122
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
123123
# replace relative links with absolute links
124124
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
125-
replacement = '[\1](https://github.com/ZeroEntropy-AI/zeroentropy-python/tree/main/\g<2>)'
125+
replacement = '[\1](https://github.com/zeroentropy-ai/zeroentropy-python/tree/main/\g<2>)'
126126

127127
[tool.pytest.ini_options]
128128
testpaths = ["tests"]

src/zeroentropy/resources/collections.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def with_raw_response(self) -> CollectionsResourceWithRawResponse:
3333
This property can be used as a prefix for any HTTP method call to return the
3434
the raw response object instead of the parsed content.
3535
36-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
36+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
3737
"""
3838
return CollectionsResourceWithRawResponse(self)
3939

@@ -42,7 +42,7 @@ def with_streaming_response(self) -> CollectionsResourceWithStreamingResponse:
4242
"""
4343
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4444
45-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
45+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
4646
"""
4747
return CollectionsResourceWithStreamingResponse(self)
4848

@@ -148,7 +148,7 @@ def with_raw_response(self) -> AsyncCollectionsResourceWithRawResponse:
148148
This property can be used as a prefix for any HTTP method call to return the
149149
the raw response object instead of the parsed content.
150150
151-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
151+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
152152
"""
153153
return AsyncCollectionsResourceWithRawResponse(self)
154154

@@ -157,7 +157,7 @@ def with_streaming_response(self) -> AsyncCollectionsResourceWithStreamingRespon
157157
"""
158158
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
159159
160-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
160+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
161161
"""
162162
return AsyncCollectionsResourceWithStreamingResponse(self)
163163

src/zeroentropy/resources/documents.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def with_raw_response(self) -> DocumentsResourceWithRawResponse:
4444
This property can be used as a prefix for any HTTP method call to return the
4545
the raw response object instead of the parsed content.
4646
47-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
47+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
4848
"""
4949
return DocumentsResourceWithRawResponse(self)
5050

@@ -53,7 +53,7 @@ def with_streaming_response(self) -> DocumentsResourceWithStreamingResponse:
5353
"""
5454
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
5555
56-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
56+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
5757
"""
5858
return DocumentsResourceWithStreamingResponse(self)
5959

@@ -378,7 +378,7 @@ def with_raw_response(self) -> AsyncDocumentsResourceWithRawResponse:
378378
This property can be used as a prefix for any HTTP method call to return the
379379
the raw response object instead of the parsed content.
380380
381-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
381+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
382382
"""
383383
return AsyncDocumentsResourceWithRawResponse(self)
384384

@@ -387,7 +387,7 @@ def with_streaming_response(self) -> AsyncDocumentsResourceWithStreamingResponse
387387
"""
388388
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
389389
390-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
390+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
391391
"""
392392
return AsyncDocumentsResourceWithStreamingResponse(self)
393393

src/zeroentropy/resources/parsers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def with_raw_response(self) -> ParsersResourceWithRawResponse:
3131
This property can be used as a prefix for any HTTP method call to return the
3232
the raw response object instead of the parsed content.
3333
34-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
34+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
3535
"""
3636
return ParsersResourceWithRawResponse(self)
3737

@@ -40,7 +40,7 @@ def with_streaming_response(self) -> ParsersResourceWithStreamingResponse:
4040
"""
4141
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4242
43-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
43+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
4444
"""
4545
return ParsersResourceWithStreamingResponse(self)
4646

@@ -93,7 +93,7 @@ def with_raw_response(self) -> AsyncParsersResourceWithRawResponse:
9393
This property can be used as a prefix for any HTTP method call to return the
9494
the raw response object instead of the parsed content.
9595
96-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
96+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
9797
"""
9898
return AsyncParsersResourceWithRawResponse(self)
9999

@@ -102,7 +102,7 @@ def with_streaming_response(self) -> AsyncParsersResourceWithStreamingResponse:
102102
"""
103103
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
104104
105-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
105+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
106106
"""
107107
return AsyncParsersResourceWithStreamingResponse(self)
108108

src/zeroentropy/resources/queries.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def with_raw_response(self) -> QueriesResourceWithRawResponse:
3535
This property can be used as a prefix for any HTTP method call to return the
3636
the raw response object instead of the parsed content.
3737
38-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
38+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
3939
"""
4040
return QueriesResourceWithRawResponse(self)
4141

@@ -44,7 +44,7 @@ def with_streaming_response(self) -> QueriesResourceWithStreamingResponse:
4444
"""
4545
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4646
47-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
47+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
4848
"""
4949
return QueriesResourceWithStreamingResponse(self)
5050

@@ -241,7 +241,7 @@ def with_raw_response(self) -> AsyncQueriesResourceWithRawResponse:
241241
This property can be used as a prefix for any HTTP method call to return the
242242
the raw response object instead of the parsed content.
243243
244-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
244+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
245245
"""
246246
return AsyncQueriesResourceWithRawResponse(self)
247247

@@ -250,7 +250,7 @@ def with_streaming_response(self) -> AsyncQueriesResourceWithStreamingResponse:
250250
"""
251251
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
252252
253-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
253+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
254254
"""
255255
return AsyncQueriesResourceWithStreamingResponse(self)
256256

src/zeroentropy/resources/status.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def with_raw_response(self) -> StatusResourceWithRawResponse:
3333
This property can be used as a prefix for any HTTP method call to return the
3434
the raw response object instead of the parsed content.
3535
36-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
36+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
3737
"""
3838
return StatusResourceWithRawResponse(self)
3939

@@ -42,7 +42,7 @@ def with_streaming_response(self) -> StatusResourceWithStreamingResponse:
4242
"""
4343
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4444
45-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
45+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
4646
"""
4747
return StatusResourceWithStreamingResponse(self)
4848

@@ -96,7 +96,7 @@ def with_raw_response(self) -> AsyncStatusResourceWithRawResponse:
9696
This property can be used as a prefix for any HTTP method call to return the
9797
the raw response object instead of the parsed content.
9898
99-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#accessing-raw-response-data-eg-headers
99+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#accessing-raw-response-data-eg-headers
100100
"""
101101
return AsyncStatusResourceWithRawResponse(self)
102102

@@ -105,7 +105,7 @@ def with_streaming_response(self) -> AsyncStatusResourceWithStreamingResponse:
105105
"""
106106
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
107107
108-
For more information, see https://www.github.com/ZeroEntropy-AI/zeroentropy-python#with_streaming_response
108+
For more information, see https://www.github.com/zeroentropy-ai/zeroentropy-python#with_streaming_response
109109
"""
110110
return AsyncStatusResourceWithStreamingResponse(self)
111111

0 commit comments

Comments
 (0)