agentforge-chat-http 0.3.0__tar.gz → 0.3.1__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.3.0 → agentforge_chat_http-0.3.1}/PKG-INFO +4 -4
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/pyproject.toml +4 -4
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/.gitignore +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/LICENSE +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/README.md +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/__init__.py +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/auth.py +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/manifest.yaml +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/py.typed +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/server.py +0 -0
- {agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/tests/unit/test_chat_server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentforge-chat-http
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
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.3.
|
|
22
|
-
Requires-Dist: agentforge-core~=0.3.
|
|
23
|
-
Requires-Dist: agentforge-py~=0.3.
|
|
21
|
+
Requires-Dist: agentforge-chat~=0.3.1
|
|
22
|
+
Requires-Dist: agentforge-core~=0.3.1
|
|
23
|
+
Requires-Dist: agentforge-py~=0.3.1
|
|
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.3.
|
|
5
|
+
version = "0.3.1"
|
|
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.3.
|
|
28
|
-
"agentforge-py ~= 0.3.
|
|
29
|
-
"agentforge-chat ~= 0.3.
|
|
27
|
+
"agentforge-core ~= 0.3.1",
|
|
28
|
+
"agentforge-py ~= 0.3.1",
|
|
29
|
+
"agentforge-chat ~= 0.3.1",
|
|
30
30
|
"fastapi>=0.115",
|
|
31
31
|
"uvicorn>=0.32",
|
|
32
32
|
"httpx>=0.27",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/manifest.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{agentforge_chat_http-0.3.0 → agentforge_chat_http-0.3.1}/src/agentforge_chat_http/server.py
RENAMED
|
File without changes
|
|
File without changes
|