agentforge-chat-http 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_http-0.2.4 → agentforge_chat_http-0.3.0}/.gitignore +10 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/PKG-INFO +4 -4
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/pyproject.toml +4 -4
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/LICENSE +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/README.md +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/__init__.py +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/auth.py +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/manifest.yaml +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/py.typed +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/server.py +0 -0
- {agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/tests/unit/test_chat_server.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-http
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: FastAPI HTTP + WebSocket + SSE server for AgentForge chat sessions
|
|
5
5
|
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
6
|
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
@@ -18,9 +18,9 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
19
|
Classifier: Typing :: Typed
|
|
20
20
|
Requires-Python: >=3.13
|
|
21
|
-
Requires-Dist: agentforge-chat~=0.
|
|
22
|
-
Requires-Dist: agentforge-core~=0.
|
|
23
|
-
Requires-Dist: agentforge-py~=0.
|
|
21
|
+
Requires-Dist: agentforge-chat~=0.3.0
|
|
22
|
+
Requires-Dist: agentforge-core~=0.3.0
|
|
23
|
+
Requires-Dist: agentforge-py~=0.3.0
|
|
24
24
|
Requires-Dist: fastapi>=0.115
|
|
25
25
|
Requires-Dist: httpx>=0.27
|
|
26
26
|
Requires-Dist: uvicorn>=0.32
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[project]
|
|
4
4
|
name = "agentforge-chat-http"
|
|
5
|
-
version = "0.
|
|
5
|
+
version = "0.3.0"
|
|
6
6
|
description = "FastAPI HTTP + WebSocket + SSE server for AgentForge chat sessions"
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
requires-python = ">=3.13"
|
|
@@ -24,9 +24,9 @@ classifiers = [
|
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
dependencies = [
|
|
27
|
-
"agentforge-core ~= 0.
|
|
28
|
-
"agentforge-py ~= 0.
|
|
29
|
-
"agentforge-chat ~= 0.
|
|
27
|
+
"agentforge-core ~= 0.3.0",
|
|
28
|
+
"agentforge-py ~= 0.3.0",
|
|
29
|
+
"agentforge-chat ~= 0.3.0",
|
|
30
30
|
"fastapi>=0.115",
|
|
31
31
|
"uvicorn>=0.32",
|
|
32
32
|
"httpx>=0.27",
|
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/manifest.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.2.4 → agentforge_chat_http-0.3.0}/src/agentforge_chat_http/server.py
RENAMED
|
File without changes
|
|
File without changes
|