hostel-protocol-python 0.4.0__tar.gz → 0.4.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.
Files changed (20) hide show
  1. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/PKG-INFO +1 -1
  2. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/pyproject.toml +1 -1
  3. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/protocol/__init__.py +17 -0
  4. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/.github/workflows/ci.yml +0 -0
  5. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/.github/workflows/publish.yml +0 -0
  6. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/.gitignore +0 -0
  7. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/Makefile +0 -0
  8. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/client/__init__.py +0 -0
  9. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/client/client.py +0 -0
  10. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/protocol/converter.py +0 -0
  11. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/protocol/models.py +0 -0
  12. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/py.typed +0 -0
  13. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/transport/__init__.py +0 -0
  14. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/transport/transport.py +0 -0
  15. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/src/hostel/transport/zeromq.py +0 -0
  16. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/tests/__init__.py +0 -0
  17. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/tests/test_client.py +0 -0
  18. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/tests/test_converter.py +0 -0
  19. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/tests/test_models.py +0 -0
  20. {hostel_protocol_python-0.4.0 → hostel_protocol_python-0.4.1}/tests/test_transport.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hostel-protocol-python
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Pydantic models, transport and client for the Hostel protocol
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: hostel-protocol>=0.4.0
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "hostel-protocol-python"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  description = "Pydantic models, transport and client for the Hostel protocol"
9
9
  requires-python = ">=3.12"
10
10
  dependencies = [
@@ -10,16 +10,22 @@ from hostel.protocol.models import (
10
10
  ChatMessage,
11
11
  ChatRequest,
12
12
  ChatResponse,
13
+ ConversationMessage,
14
+ ConversationSummary,
13
15
  CreateComponentRequest,
14
16
  CreateComponentResponse,
15
17
  CreateTaskRequest,
16
18
  CreateTaskResponse,
17
19
  DeleteComponentRequest,
18
20
  DeleteComponentResponse,
21
+ DeleteConversationRequest,
22
+ DeleteConversationResponse,
19
23
  DeleteTaskRequest,
20
24
  DeleteTaskResponse,
21
25
  GetComponentRequest,
22
26
  GetComponentResponse,
27
+ GetConversationRequest,
28
+ GetConversationResponse,
23
29
  GetTaskRequest,
24
30
  GetTaskResponse,
25
31
  HostelMessage,
@@ -28,6 +34,8 @@ from hostel.protocol.models import (
28
34
  ListAgentsResponse,
29
35
  ListComponentsRequest,
30
36
  ListComponentsResponse,
37
+ ListConversationsRequest,
38
+ ListConversationsResponse,
31
39
  ListTasksRequest,
32
40
  ListTasksResponse,
33
41
  TaskData,
@@ -49,6 +57,15 @@ __all__ = [
49
57
  "ChatMessage",
50
58
  "ChatRequest",
51
59
  "ChatResponse",
60
+ # Conversation
61
+ "ConversationSummary",
62
+ "ConversationMessage",
63
+ "ListConversationsRequest",
64
+ "ListConversationsResponse",
65
+ "GetConversationRequest",
66
+ "GetConversationResponse",
67
+ "DeleteConversationRequest",
68
+ "DeleteConversationResponse",
52
69
  # Agent
53
70
  "ListAgentsRequest",
54
71
  "ListAgentsResponse",