a3s-code 0.3.1__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 (34) hide show
  1. {a3s_code-0.3.1 → a3s_code-0.4.1}/PKG-INFO +1 -1
  2. {a3s_code-0.3.1 → a3s_code-0.4.1}/a3s_code/__init__.py +22 -13
  3. {a3s_code-0.3.1 → a3s_code-0.4.1}/a3s_code/client.py +358 -201
  4. {a3s_code-0.3.1 → a3s_code-0.4.1}/a3s_code/types.py +96 -11
  5. {a3s_code-0.3.1 → a3s_code-0.4.1}/proto/code_agent.proto +256 -14
  6. {a3s_code-0.3.1 → a3s_code-0.4.1}/pyproject.toml +1 -1
  7. a3s_code-0.4.1/tests/test_e2e.py +789 -0
  8. a3s_code-0.3.1/examples/README.md +0 -572
  9. a3s_code-0.3.1/examples/basic_usage.py +0 -122
  10. a3s_code-0.3.1/examples/claude_code_skills_example.py +0 -100
  11. a3s_code-0.3.1/examples/code_review_agent.py +0 -262
  12. a3s_code-0.3.1/examples/context_management.py +0 -192
  13. a3s_code-0.3.1/examples/event_streaming.py +0 -144
  14. a3s_code-0.3.1/examples/external_tasks.py +0 -202
  15. a3s_code-0.3.1/examples/hitl_confirmation.py +0 -150
  16. a3s_code-0.3.1/examples/lsp_example.py +0 -109
  17. a3s_code-0.3.1/examples/memory_events_example.py +0 -173
  18. a3s_code-0.3.1/examples/memory_example.py +0 -222
  19. a3s_code-0.3.1/examples/permission_policy.py +0 -136
  20. a3s_code-0.3.1/examples/planning_example.py +0 -156
  21. a3s_code-0.3.1/examples/provider_config.py +0 -256
  22. a3s_code-0.3.1/examples/skill_management.py +0 -95
  23. a3s_code-0.3.1/examples/storage_configuration.py +0 -105
  24. a3s_code-0.3.1/examples/todo_tracking.py +0 -206
  25. a3s_code-0.3.1/tests/test_integration.py +0 -269
  26. {a3s_code-0.3.1 → a3s_code-0.4.1}/.gitignore +0 -0
  27. {a3s_code-0.3.1 → a3s_code-0.4.1}/LICENSE +0 -0
  28. {a3s_code-0.3.1 → a3s_code-0.4.1}/MANIFEST.in +0 -0
  29. {a3s_code-0.3.1 → a3s_code-0.4.1}/README.md +0 -0
  30. {a3s_code-0.3.1 → a3s_code-0.4.1}/a3s_code/py.typed +0 -0
  31. {a3s_code-0.3.1 → a3s_code-0.4.1}/justfile +0 -0
  32. {a3s_code-0.3.1 → a3s_code-0.4.1}/pytest.ini +0 -0
  33. {a3s_code-0.3.1 → a3s_code-0.4.1}/tests/conftest.py +0 -0
  34. {a3s_code-0.3.1 → a3s_code-0.4.1}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: a3s-code
3
- Version: 0.3.1
3
+ Version: 0.4.1
4
4
  Summary: A3S Code Agent Python SDK
5
5
  Project-URL: Homepage, https://github.com/A3S-Lab/Code
6
6
  Project-URL: Documentation, https://github.com/A3S-Lab/Code#readme
@@ -4,12 +4,7 @@ A3S Code Agent Python SDK
4
4
  A Python client for the A3S Code Agent gRPC service.
5
5
  """
6
6
 
7
- from .client import (
8
- A3sClient,
9
- load_config_from_file,
10
- load_config_from_dir,
11
- load_default_config,
12
- )
7
+ from .client import A3sClient
13
8
  from .types import (
14
9
  # Enums
15
10
  HealthStatus,
@@ -29,6 +24,7 @@ from .types import (
29
24
  CronJobStatus,
30
25
  CronExecutionStatus,
31
26
  StorageType,
27
+ AgenticStrategy,
32
28
  # Types
33
29
  AgentInfo,
34
30
  ToolCapability,
@@ -50,7 +46,6 @@ from .types import (
50
46
  GenerateResponse,
51
47
  GenerateChunk,
52
48
  Skill,
53
- ClaudeCodeSkill,
54
49
  AgentEvent,
55
50
  ConfirmationPolicy,
56
51
  LaneHandlerConfig,
@@ -81,15 +76,20 @@ from .types import (
81
76
  # Cron types
82
77
  CronJob,
83
78
  CronExecution,
79
+ # Agentic types
80
+ AgenticStep,
81
+ AgenticGenerateResponse,
82
+ AgenticGenerateEvent,
83
+ # Delegation types
84
+ DelegateResponse,
85
+ # Queue types
86
+ LaneStats,
87
+ QueueStats,
84
88
  )
85
89
 
86
- __version__ = "0.1.0"
90
+ __version__ = "0.4.1"
87
91
  __all__ = [
88
92
  "A3sClient",
89
- # Config functions
90
- "load_config_from_file",
91
- "load_config_from_dir",
92
- "load_default_config",
93
93
  # Enums
94
94
  "HealthStatus",
95
95
  "HealthStatusCode",
@@ -108,6 +108,7 @@ __all__ = [
108
108
  "CronJobStatus",
109
109
  "CronExecutionStatus",
110
110
  "StorageType",
111
+ "AgenticStrategy",
111
112
  # Types
112
113
  "AgentInfo",
113
114
  "ToolCapability",
@@ -129,7 +130,6 @@ __all__ = [
129
130
  "GenerateResponse",
130
131
  "GenerateChunk",
131
132
  "Skill",
132
- "ClaudeCodeSkill",
133
133
  "AgentEvent",
134
134
  "ConfirmationPolicy",
135
135
  "LaneHandlerConfig",
@@ -160,4 +160,13 @@ __all__ = [
160
160
  # Cron types
161
161
  "CronJob",
162
162
  "CronExecution",
163
+ # Agentic types
164
+ "AgenticStep",
165
+ "AgenticGenerateResponse",
166
+ "AgenticGenerateEvent",
167
+ # Delegation types
168
+ "DelegateResponse",
169
+ # Queue types
170
+ "LaneStats",
171
+ "QueueStats",
163
172
  ]