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.
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/PKG-INFO +1 -16
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/README.md +0 -15
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/pyproject.toml +1 -1
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/.gitignore +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/LICENSE +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/__init__.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/agent.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/messages.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/models.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/models_catalog.json +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/__init__.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/anthropic_like.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/base.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/gemini.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/openai_chat.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/providers/openai_responses.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/py.typed +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/session.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/tools.py +0 -0
- {mycode_sdk-0.4.2 → mycode_sdk-0.4.3}/src/mycode/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mycode-sdk
|
|
3
|
-
Version: 0.4.
|
|
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
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|