Skip to content

Commit 8c6f297

Browse files
stainless-app[bot]meorphis
authored andcommitted
chore: update SDK settings
1 parent 380252a commit 8c6f297

File tree

12 files changed

+30
-30
lines changed

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

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.1-alpha.0"
2+
".": "3.0.0-alpha.19"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 15
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-0e2874da641d72b5833ebef8cc792d86250d397b96eeedba7d4759ffabc076de.yml
33
openapi_spec_hash: f13ea02b49134e11025cb18f3d45d313
4-
config_hash: 8e3fb817af0090cad960c30cab828aac
4+
config_hash: 98555becb03f89d0fcf2e35a0fa6a41b

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/supermemoryai/sdk-py.git
65+
$ pip install git+ssh://git@github.com/supermemoryai/python-sdk.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/supermemoryai/sdk-py/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/supermemoryai/python-sdk/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
@@ -249,9 +249,9 @@ memory = response.parse() # get the object that `memories.add()` would have ret
249249
print(memory.id)
250250
```
251251

252-
These methods return an [`APIResponse`](https://github.com/supermemoryai/sdk-py/tree/main/src/supermemory_new/_response.py) object.
252+
These methods return an [`APIResponse`](https://github.com/supermemoryai/python-sdk/tree/main/src/supermemory_new/_response.py) object.
253253

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

256256
#### `.with_streaming_response`
257257

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

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

360-
We are keen for your feedback; please open an [issue](https://www.github.com/supermemoryai/sdk-py/issues) with questions, bugs, or suggestions.
360+
We are keen for your feedback; please open an [issue](https://www.github.com/supermemoryai/python-sdk/issues) with questions, bugs, or suggestions.
361361

362362
### Determining the installed version
363363

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "supermemory"
3-
version = "0.0.1-alpha.0"
3+
version = "3.0.0-alpha.19"
44
description = "The official Python library for the supermemory API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -34,8 +34,8 @@ classifiers = [
3434
]
3535

3636
[project.urls]
37-
Homepage = "https://github.com/supermemoryai/sdk-py"
38-
Repository = "https://github.com/supermemoryai/sdk-py"
37+
Homepage = "https://github.com/supermemoryai/python-sdk"
38+
Repository = "https://github.com/supermemoryai/python-sdk"
3939

4040
[project.optional-dependencies]
4141
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.6"]
@@ -124,7 +124,7 @@ path = "README.md"
124124
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
125125
# replace relative links with absolute links
126126
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
127-
replacement = '[\1](https://github.com/supermemoryai/sdk-py/tree/main/\g<2>)'
127+
replacement = '[\1](https://github.com/supermemoryai/python-sdk/tree/main/\g<2>)'
128128

129129
[tool.pytest.ini_options]
130130
testpaths = ["tests"]

src/supermemory_new/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "supermemory_new"
4-
__version__ = "0.0.1-alpha.0" # x-release-please-version
4+
__version__ = "3.0.0-alpha.19" # x-release-please-version

src/supermemory_new/resources/connections.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def with_raw_response(self) -> ConnectionsResourceWithRawResponse:
4343
This property can be used as a prefix for any HTTP method call to return
4444
the raw response object instead of the parsed content.
4545
46-
For more information, see https://www.github.com/supermemoryai/sdk-py#accessing-raw-response-data-eg-headers
46+
For more information, see https://www.github.com/supermemoryai/python-sdk#accessing-raw-response-data-eg-headers
4747
"""
4848
return ConnectionsResourceWithRawResponse(self)
4949

@@ -52,7 +52,7 @@ def with_streaming_response(self) -> ConnectionsResourceWithStreamingResponse:
5252
"""
5353
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
5454
55-
For more information, see https://www.github.com/supermemoryai/sdk-py#with_streaming_response
55+
For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
5656
"""
5757
return ConnectionsResourceWithStreamingResponse(self)
5858

@@ -333,7 +333,7 @@ def with_raw_response(self) -> AsyncConnectionsResourceWithRawResponse:
333333
This property can be used as a prefix for any HTTP method call to return
334334
the raw response object instead of the parsed content.
335335
336-
For more information, see https://www.github.com/supermemoryai/sdk-py#accessing-raw-response-data-eg-headers
336+
For more information, see https://www.github.com/supermemoryai/python-sdk#accessing-raw-response-data-eg-headers
337337
"""
338338
return AsyncConnectionsResourceWithRawResponse(self)
339339

@@ -342,7 +342,7 @@ def with_streaming_response(self) -> AsyncConnectionsResourceWithStreamingRespon
342342
"""
343343
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
344344
345-
For more information, see https://www.github.com/supermemoryai/sdk-py#with_streaming_response
345+
For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
346346
"""
347347
return AsyncConnectionsResourceWithStreamingResponse(self)
348348

src/supermemory_new/resources/memories.py

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

@@ -43,7 +43,7 @@ def with_streaming_response(self) -> MemoriesResourceWithStreamingResponse:
4343
"""
4444
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
4545
46-
For more information, see https://www.github.com/supermemoryai/sdk-py#with_streaming_response
46+
For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
4747
"""
4848
return MemoriesResourceWithStreamingResponse(self)
4949

@@ -313,7 +313,7 @@ def with_raw_response(self) -> AsyncMemoriesResourceWithRawResponse:
313313
This property can be used as a prefix for any HTTP method call to return
314314
the raw response object instead of the parsed content.
315315
316-
For more information, see https://www.github.com/supermemoryai/sdk-py#accessing-raw-response-data-eg-headers
316+
For more information, see https://www.github.com/supermemoryai/python-sdk#accessing-raw-response-data-eg-headers
317317
"""
318318
return AsyncMemoriesResourceWithRawResponse(self)
319319

@@ -322,7 +322,7 @@ def with_streaming_response(self) -> AsyncMemoriesResourceWithStreamingResponse:
322322
"""
323323
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
324324
325-
For more information, see https://www.github.com/supermemoryai/sdk-py#with_streaming_response
325+
For more information, see https://www.github.com/supermemoryai/python-sdk#with_streaming_response
326326
"""
327327
return AsyncMemoriesResourceWithStreamingResponse(self)
328328

0 commit comments

Comments
 (0)