agentforge-chat 0.2.4__tar.gz → 0.3.0__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.
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/.gitignore +10 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/PKG-INFO +3 -3
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/pyproject.toml +3 -3
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/LICENSE +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/README.md +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/__init__.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/_idempotency.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/_locks.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/_segment.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/_window.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/build.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/history.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/manifest.yaml +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/py.typed +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/session.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/sqlite.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/tokenisers.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/src/agentforge_chat/truncation.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_chat_build.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_chat_streaming_per_token.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_in_memory_history.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_sentence_window.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_session.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_session_safety_modes.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_sqlite_history.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_token_budget_tokeniser.py +0 -0
- {agentforge_chat-0.2.4 → agentforge_chat-0.3.0}/tests/unit/test_truncation.py +0 -0
|
@@ -47,3 +47,13 @@ Thumbs.db
|
|
|
47
47
|
# Project-local
|
|
48
48
|
*.local
|
|
49
49
|
.agentforge-state/.session-cache
|
|
50
|
+
|
|
51
|
+
# AI-assistant working state — local session tracking, not part of
|
|
52
|
+
# the published project. The process docs under .claude/ (standards,
|
|
53
|
+
# checklists, CLAUDE.md) are intentionally kept tracked; only the
|
|
54
|
+
# churny per-session state files are ignored.
|
|
55
|
+
.claude/state/
|
|
56
|
+
|
|
57
|
+
# Launch / go-to-market drafts — local-only marketing material,
|
|
58
|
+
# never published to the repo.
|
|
59
|
+
launch/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentforge-chat
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Chat-agent runtime (ChatSession + history drivers + truncation) for AgentForge
|
|
5
5
|
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
6
|
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
@@ -19,8 +19,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
20
|
Classifier: Typing :: Typed
|
|
21
21
|
Requires-Python: >=3.13
|
|
22
|
-
Requires-Dist: agentforge-core~=0.
|
|
23
|
-
Requires-Dist: agentforge-py~=0.
|
|
22
|
+
Requires-Dist: agentforge-core~=0.3.0
|
|
23
|
+
Requires-Dist: agentforge-py~=0.3.0
|
|
24
24
|
Requires-Dist: aiosqlite>=0.20
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
[project]
|
|
11
11
|
name = "agentforge-chat"
|
|
12
|
-
version = "0.
|
|
12
|
+
version = "0.3.0"
|
|
13
13
|
description = "Chat-agent runtime (ChatSession + history drivers + truncation) for AgentForge"
|
|
14
14
|
readme = "README.md"
|
|
15
15
|
requires-python = ">=3.13"
|
|
@@ -30,8 +30,8 @@ classifiers = [
|
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
dependencies = [
|
|
33
|
-
"agentforge-core ~= 0.
|
|
34
|
-
"agentforge-py ~= 0.
|
|
33
|
+
"agentforge-core ~= 0.3.0",
|
|
34
|
+
"agentforge-py ~= 0.3.0",
|
|
35
35
|
# aiosqlite is a hard dependency, not an optional extra: the package
|
|
36
36
|
# eagerly imports SqliteChatHistory (agentforge_chat/__init__.py ->
|
|
37
37
|
# sqlite.py -> `import aiosqlite`), so `import agentforge_chat` fails
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|