Skip to content

Commit 13dc4c6

Browse files
committed
bump version
1 parent 4addc27 commit 13dc4c6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sentienceapi"
7-
version = "0.91.0"
7+
version = "0.91.1"
88
description = "Python SDK for Sentience AI Agent Browser Automation"
99
readme = "README.md"
1010
requires-python = ">=3.11"

sentience/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
)
7171
from .wait import wait_for
7272

73-
__version__ = "0.91.0"
73+
__version__ = "0.91.1"
7474

7575
__all__ = [
7676
# Core SDK

sentience/tracing.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,10 @@ def _generate_index(self) -> None:
230230
try:
231231
from .trace_indexing import write_trace_index
232232

233-
write_trace_index(str(self.path))
233+
# Use frontend format to ensure 'step' field is present (1-based)
234+
# Frontend derives sequence from step.step - 1, so step must be valid
235+
index_path = Path(self.path).with_suffix(".index.json")
236+
write_trace_index(str(self.path), str(index_path), frontend_format=True)
234237
except Exception as e:
235238
# Non-fatal: log but don't crash
236239
print(f"⚠️ Failed to generate trace index: {e}")

0 commit comments

Comments
 (0)