Skip to content
Open
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.38.0"
".": "0.39.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 31
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/hyperspell/hyperspell-e57add0181eb2a057f8416eaf4020dd5b3042431342a51e3d4dc39af4a41aced.yml
openapi_spec_hash: d0d66b814ebe56ac7c0135f9f3aab616
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/hyperspell/hyperspell-7e0b3ac5f7ed4d2322f6b23a6627efbb98567e020337b62d447993cbe6303797.yml
openapi_spec_hash: 3cafd2b018e355707e594ad761fccedd
config_hash: 11e84d884a86d2db0411c35fae6e9121
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.39.0 (2026-06-23)

Full Changelog: [v0.38.0...v0.39.0](https://github.com/hyperspell/python-sdk/compare/v0.38.0...v0.39.0)

### Features

* **api:** api update ([49bdccd](https://github.com/hyperspell/python-sdk/commit/49bdccd4fdc1b3c62027248eda993a9cf8c9b2d1))

## 0.38.0 (2026-06-18)

Full Changelog: [v0.37.0...v0.38.0](https://github.com/hyperspell/python-sdk/compare/v0.37.0...v0.38.0)
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 = "hyperspell"
version = "0.38.0"
version = "0.39.0"
description = "The official Python library for the hyperspell API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/hyperspell/_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__ = "hyperspell"
__version__ = "0.38.0" # x-release-please-version
__version__ = "0.39.0" # x-release-please-version
8 changes: 4 additions & 4 deletions tests/api_resources/test_memories.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def test_method_search_with_all_params(self, client: Hyperspell) -> None:
query="What does Hyperspell do?",
answer=True,
effort="minimal",
max_results=0,
max_results=1,
options={
"after": parse_datetime("2019-12-27T18:11:19.117Z"),
"answer_model": "llama-3.1",
Expand All @@ -310,7 +310,7 @@ def test_method_search_with_all_params(self, client: Hyperspell) -> None:
"label_ids": ["string"],
"weight": 0,
},
"max_results": 200,
"max_results": 1,
"memory_types": ["procedure"],
"notion": {
"notion_page_ids": ["string"],
Expand Down Expand Up @@ -700,7 +700,7 @@ async def test_method_search_with_all_params(self, async_client: AsyncHyperspell
query="What does Hyperspell do?",
answer=True,
effort="minimal",
max_results=0,
max_results=1,
options={
"after": parse_datetime("2019-12-27T18:11:19.117Z"),
"answer_model": "llama-3.1",
Expand All @@ -716,7 +716,7 @@ async def test_method_search_with_all_params(self, async_client: AsyncHyperspell
"label_ids": ["string"],
"weight": 0,
},
"max_results": 200,
"max_results": 1,
"memory_types": ["procedure"],
"notion": {
"notion_page_ids": ["string"],
Expand Down
Loading