Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.7"
".": "0.3.8"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 10
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/evermind%2FEverMemOS-8dd89565a380cced738b3a3db7958ea82f5039747c17e3301dbf9e0224c66aec.yml
openapi_spec_hash: dca9f914a8bee936565c21ac98316b2d
configured_endpoints: 9
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/evermind%2FEverMemOS-70486f52a522b1271f833cc3263dfe012c0ae7c0f1d520a18d45037cc9633511.yml
openapi_spec_hash: 3b4ed62d5425b7d7c4313c731b9f4959
config_hash: 9bde077e7fec6b4fc6b5747ccb68227a
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.3.8 (2026-01-28)

Full Changelog: [v0.3.7...v0.3.8](https://github.com/evermemos/evermemos-python/compare/v0.3.7...v0.3.8)

### Features

* **api:** api update ([e2cc79c](https://github.com/evermemos/evermemos-python/commit/e2cc79c7b19cd8da12385d59bd6fcb7e83be6c84))


### Chores

* update SDK settings ([c6d796d](https://github.com/evermemos/evermemos-python/commit/c6d796d7bbbec539954c1802094932a919d0b8e5))
* update SDK settings ([11a1c09](https://github.com/evermemos/evermemos-python/commit/11a1c09da854becb6567ad5428db716e38e81ee0))

## 0.3.7 (2026-01-27)

Full Changelog: [v0.3.6...v0.3.7](https://github.com/evermemos/evermemos-python/compare/v0.3.6...v0.3.7)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ memory = client.v1.memories.create(
message_id="msg_001",
sender="user_001",
)
print(memory.message)
print(memory.request_id)
```

While you can provide an `api_key` keyword argument,
Expand Down Expand Up @@ -67,7 +67,7 @@ async def main() -> None:
message_id="msg_001",
sender="user_001",
)
print(memory.message)
print(memory.request_id)


asyncio.run(main())
Expand Down Expand Up @@ -106,7 +106,7 @@ async def main() -> None:
message_id="msg_001",
sender="user_001",
)
print(memory.message)
print(memory.request_id)


asyncio.run(main())
Expand Down Expand Up @@ -296,7 +296,7 @@ response = client.v1.memories.with_raw_response.create(
print(response.headers.get('X-My-Header'))

memory = response.parse() # get the object that `v1.memories.create()` would have returned
print(memory.message)
print(memory.request_id)
```

These methods return an [`APIResponse`](https://github.com/evermemos/evermemos-python/tree/main/src/evermemos/_response.py) object.
Expand Down
14 changes: 0 additions & 14 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,6 @@ Methods:
- <code title="patch /api/v1/memories/conversation-meta">client.v1.memories.conversation_meta.<a href="./src/evermemos/resources/v1/memories/conversation_meta.py">update</a>(\*\*<a href="src/evermemos/types/v1/memories/conversation_meta_update_params.py">params</a>) -> <a href="./src/evermemos/types/v1/memories/conversation_meta_update_response.py">ConversationMetaUpdateResponse</a></code>
- <code title="get /api/v1/memories/conversation-meta">client.v1.memories.conversation_meta.<a href="./src/evermemos/resources/v1/memories/conversation_meta.py">get</a>() -> <a href="./src/evermemos/types/v1/memories/conversation_meta_get_response.py">ConversationMetaGetResponse</a></code>

## GlobalUserProfile

### Custom

Types:

```python
from evermemos.types.v1.global_user_profile import CustomUpsertResponse
```

Methods:

- <code title="post /api/v1/global-user-profile/custom">client.v1.global_user_profile.custom.<a href="./src/evermemos/resources/v1/global_user_profile/custom.py">upsert</a>(\*\*<a href="src/evermemos/types/v1/global_user_profile/custom_upsert_params.py">params</a>) -> <a href="./src/evermemos/types/v1/global_user_profile/custom_upsert_response.py">CustomUpsertResponse</a></code>

## Stats

### Request
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "evermemos"
version = "0.3.7"
version = "0.3.8"
description = "The official Python library for the EverMemOS API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/evermemos/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "evermemos"
__version__ = "0.3.7" # x-release-please-version
__version__ = "0.3.8" # x-release-please-version
14 changes: 0 additions & 14 deletions src/evermemos/resources/v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@
MemoriesResourceWithStreamingResponse,
AsyncMemoriesResourceWithStreamingResponse,
)
from .global_user_profile import (
GlobalUserProfileResource,
AsyncGlobalUserProfileResource,
GlobalUserProfileResourceWithRawResponse,
AsyncGlobalUserProfileResourceWithRawResponse,
GlobalUserProfileResourceWithStreamingResponse,
AsyncGlobalUserProfileResourceWithStreamingResponse,
)

__all__ = [
"MemoriesResource",
Expand All @@ -40,12 +32,6 @@
"AsyncMemoriesResourceWithRawResponse",
"MemoriesResourceWithStreamingResponse",
"AsyncMemoriesResourceWithStreamingResponse",
"GlobalUserProfileResource",
"AsyncGlobalUserProfileResource",
"GlobalUserProfileResourceWithRawResponse",
"AsyncGlobalUserProfileResourceWithRawResponse",
"GlobalUserProfileResourceWithStreamingResponse",
"AsyncGlobalUserProfileResourceWithStreamingResponse",
"StatsResource",
"AsyncStatsResource",
"StatsResourceWithRawResponse",
Expand Down
33 changes: 0 additions & 33 deletions src/evermemos/resources/v1/global_user_profile/__init__.py

This file was deleted.

185 changes: 0 additions & 185 deletions src/evermemos/resources/v1/global_user_profile/custom.py

This file was deleted.

Loading