mycode-sdk 0.4.2__tar.gz → 0.4.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mycode-sdk
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Multi-turn tool-calling agent runtime for embedding the mycode agent loop.
5
5
  Project-URL: Homepage, https://github.com/legibet/mycode
6
6
  Project-URL: Repository, https://github.com/legibet/mycode
@@ -97,18 +97,3 @@ agent = Agent(
97
97
  ```
98
98
 
99
99
  Type hints drive the JSON schema. Unknown types raise; missing docstrings raise. `async def` tools are run via `asyncio.run` on the executor's worker thread.
100
-
101
- ## Disabling auto-persistence
102
-
103
- Point `session_dir` (or the implied `SessionStore` data dir) at a temporary directory if you need an ephemeral session:
104
-
105
- ```python
106
- import tempfile
107
- from pathlib import Path
108
-
109
- agent = Agent(
110
- model="claude-sonnet-4-6",
111
- cwd=".",
112
- session_dir=Path(tempfile.mkdtemp()) / "scratch",
113
- )
114
- ```
@@ -72,18 +72,3 @@ agent = Agent(
72
72
  ```
73
73
 
74
74
  Type hints drive the JSON schema. Unknown types raise; missing docstrings raise. `async def` tools are run via `asyncio.run` on the executor's worker thread.
75
-
76
- ## Disabling auto-persistence
77
-
78
- Point `session_dir` (or the implied `SessionStore` data dir) at a temporary directory if you need an ephemeral session:
79
-
80
- ```python
81
- import tempfile
82
- from pathlib import Path
83
-
84
- agent = Agent(
85
- model="claude-sonnet-4-6",
86
- cwd=".",
87
- session_dir=Path(tempfile.mkdtemp()) / "scratch",
88
- )
89
- ```
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "mycode-sdk"
7
- version = "0.4.2"
7
+ version = "0.4.3"
8
8
  description = "Multi-turn tool-calling agent runtime for embedding the mycode agent loop."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
File without changes
File without changes