Skip to content

Commit f233ca0

Browse files
chore: update SDK settings
1 parent 0e5f3ba commit f233ca0

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
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/warpdotdev/warp-sdk-python/actions/workflows/publish-pypi.yml
3+
# You can run this workflow by navigating to https://www.github.com/warpdotdev/oz-sdk-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 == 'warpdotdev/warp-sdk-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'warpdotdev/oz-sdk-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@v6

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 12
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-c99d72d8d845f1eeabf7a716949a12408df952a2a0ca2b97df570da3a7c8bb49.yml
33
openapi_spec_hash: 8a503cbccc8a5741554282327a557114
4-
config_hash: 690f9341424d3a9e55605bfbb24ab60e
4+
config_hash: da427013e3b47f406a876c4f564046e7

CONTRIBUTING.md

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

6464
```sh
65-
$ pip install git+ssh://git@github.com/warpdotdev/warp-sdk-python.git
65+
$ pip install git+ssh://git@github.com/warpdotdev/oz-sdk-python.git
6666
```
6767

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

121121
### Publish with a GitHub workflow
122122

123-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/warpdotdev/warp-sdk-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
123+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/warpdotdev/oz-sdk-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
124124

125125
### Publish manually
126126

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ agent = response.parse() # get the object that `agent.run()` would have returne
323323
print(agent.run_id)
324324
```
325325

326-
These methods return an [`APIResponse`](https://github.com/warpdotdev/warp-sdk-python/tree/main/src/warp_agent_sdk/_response.py) object.
326+
These methods return an [`APIResponse`](https://github.com/warpdotdev/oz-sdk-python/tree/main/src/warp_agent_sdk/_response.py) object.
327327

328-
The async client returns an [`AsyncAPIResponse`](https://github.com/warpdotdev/warp-sdk-python/tree/main/src/warp_agent_sdk/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
328+
The async client returns an [`AsyncAPIResponse`](https://github.com/warpdotdev/oz-sdk-python/tree/main/src/warp_agent_sdk/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
329329

330330
#### `.with_streaming_response`
331331

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

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

434-
We are keen for your feedback; please open an [issue](https://www.github.com/warpdotdev/warp-sdk-python/issues) with questions, bugs, or suggestions.
434+
We are keen for your feedback; please open an [issue](https://www.github.com/warpdotdev/oz-sdk-python/issues) with questions, bugs, or suggestions.
435435

436436
### Determining the installed version
437437

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ classifiers = [
3737
]
3838

3939
[project.urls]
40-
Homepage = "https://github.com/warpdotdev/warp-sdk-python"
41-
Repository = "https://github.com/warpdotdev/warp-sdk-python"
40+
Homepage = "https://github.com/warpdotdev/oz-sdk-python"
41+
Repository = "https://github.com/warpdotdev/oz-sdk-python"
4242

4343
[project.optional-dependencies]
4444
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
@@ -112,7 +112,7 @@ path = "README.md"
112112
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
113113
# replace relative links with absolute links
114114
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
115-
replacement = '[\1](https://github.com/warpdotdev/warp-sdk-python/tree/main/\g<2>)'
115+
replacement = '[\1](https://github.com/warpdotdev/oz-sdk-python/tree/main/\g<2>)'
116116

117117
[tool.pytest.ini_options]
118118
testpaths = ["tests"]

src/warp_agent_sdk/resources/agent/agent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def with_raw_response(self) -> AgentResourceWithRawResponse:
5757
This property can be used as a prefix for any HTTP method call to return
5858
the raw response object instead of the parsed content.
5959
60-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#accessing-raw-response-data-eg-headers
60+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#accessing-raw-response-data-eg-headers
6161
"""
6262
return AgentResourceWithRawResponse(self)
6363

@@ -66,7 +66,7 @@ def with_streaming_response(self) -> AgentResourceWithStreamingResponse:
6666
"""
6767
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
6868
69-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#with_streaming_response
69+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
7070
"""
7171
return AgentResourceWithStreamingResponse(self)
7272

@@ -217,7 +217,7 @@ def with_raw_response(self) -> AsyncAgentResourceWithRawResponse:
217217
This property can be used as a prefix for any HTTP method call to return
218218
the raw response object instead of the parsed content.
219219
220-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#accessing-raw-response-data-eg-headers
220+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#accessing-raw-response-data-eg-headers
221221
"""
222222
return AsyncAgentResourceWithRawResponse(self)
223223

@@ -226,7 +226,7 @@ def with_streaming_response(self) -> AsyncAgentResourceWithStreamingResponse:
226226
"""
227227
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
228228
229-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#with_streaming_response
229+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
230230
"""
231231
return AsyncAgentResourceWithStreamingResponse(self)
232232

src/warp_agent_sdk/resources/agent/runs.py

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

@@ -44,7 +44,7 @@ def with_streaming_response(self) -> RunsResourceWithStreamingResponse:
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/warpdotdev/warp-sdk-python#with_streaming_response
47+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
4848
"""
4949
return RunsResourceWithStreamingResponse(self)
5050

@@ -231,7 +231,7 @@ def with_raw_response(self) -> AsyncRunsResourceWithRawResponse:
231231
This property can be used as a prefix for any HTTP method call to return
232232
the raw response object instead of the parsed content.
233233
234-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#accessing-raw-response-data-eg-headers
234+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#accessing-raw-response-data-eg-headers
235235
"""
236236
return AsyncRunsResourceWithRawResponse(self)
237237

@@ -240,7 +240,7 @@ def with_streaming_response(self) -> AsyncRunsResourceWithStreamingResponse:
240240
"""
241241
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
242242
243-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#with_streaming_response
243+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
244244
"""
245245
return AsyncRunsResourceWithStreamingResponse(self)
246246

src/warp_agent_sdk/resources/agent/schedules.py

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

@@ -40,7 +40,7 @@ def with_streaming_response(self) -> SchedulesResourceWithStreamingResponse:
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/warpdotdev/warp-sdk-python#with_streaming_response
43+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
4444
"""
4545
return SchedulesResourceWithStreamingResponse(self)
4646

@@ -336,7 +336,7 @@ def with_raw_response(self) -> AsyncSchedulesResourceWithRawResponse:
336336
This property can be used as a prefix for any HTTP method call to return
337337
the raw response object instead of the parsed content.
338338
339-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#accessing-raw-response-data-eg-headers
339+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#accessing-raw-response-data-eg-headers
340340
"""
341341
return AsyncSchedulesResourceWithRawResponse(self)
342342

@@ -345,7 +345,7 @@ def with_streaming_response(self) -> AsyncSchedulesResourceWithStreamingResponse
345345
"""
346346
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
347347
348-
For more information, see https://www.github.com/warpdotdev/warp-sdk-python#with_streaming_response
348+
For more information, see https://www.github.com/warpdotdev/oz-sdk-python#with_streaming_response
349349
"""
350350
return AsyncSchedulesResourceWithStreamingResponse(self)
351351

0 commit comments

Comments
 (0)