sa-assistant 0.2.4__tar.gz → 0.2.5__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. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/PKG-INFO +1 -1
  2. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/pyproject.toml +1 -1
  3. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/PKG-INFO +1 -1
  4. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/tui/app.py +3 -2
  5. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/README.md +0 -0
  6. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/setup.cfg +0 -0
  7. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agents/__init__.py +0 -0
  8. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agents/orchestrator.py +0 -0
  9. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agents/specialists.py +0 -0
  10. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/__init__.py +0 -0
  11. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/discovery.py +0 -0
  12. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/errors.py +0 -0
  13. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/models.py +0 -0
  14. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/parser.py +0 -0
  15. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/prompt.py +0 -0
  16. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/agentskills/tool.py +0 -0
  17. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/cli/__init__.py +0 -0
  18. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/cli/callback.py +0 -0
  19. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/cli/components.py +0 -0
  20. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/cli/console.py +0 -0
  21. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/cli/mdstream.py +0 -0
  22. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/mcp_client/client.py +0 -0
  23. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/model/__init__.py +0 -0
  24. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/model/load.py +0 -0
  25. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/prompts/__init__.py +0 -0
  26. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/prompts/system_prompts.py +0 -0
  27. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/SOURCES.txt +0 -0
  28. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/dependency_links.txt +0 -0
  29. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/entry_points.txt +0 -0
  30. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/requires.txt +0 -0
  31. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/sa_assistant.egg-info/top_level.txt +0 -0
  32. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/tui/__init__.py +0 -0
  33. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/src/tui/styles.tcss +0 -0
  34. {sa_assistant-0.2.4 → sa_assistant-0.2.5}/test/test_main.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sa-assistant
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: SA Assistant - AWS Solutions Architect Professional Agent with Multi-Agent Architecture
5
5
  Author-email: onesuit <wltks2155@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sa-assistant"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  requires-python = ">=3.10"
9
9
  description = "SA Assistant - AWS Solutions Architect Professional Agent with Multi-Agent Architecture"
10
10
  readme = "README.md"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sa-assistant
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: SA Assistant - AWS Solutions Architect Professional Agent with Multi-Agent Architecture
5
5
  Author-email: onesuit <wltks2155@gmail.com>
6
6
  License: MIT
@@ -26,7 +26,7 @@ from agentskills import discover_skills, generate_skills_prompt, create_skill_to
26
26
 
27
27
  CSS_PATH = Path(__file__).parent / "styles.tcss"
28
28
  SKILLS_DIR = Path(__file__).parent.parent / "skills"
29
- VERSION = "0.2.4"
29
+ VERSION = "0.2.5"
30
30
 
31
31
 
32
32
  class SessionHeader(Static):
@@ -154,6 +154,7 @@ class MessagePanel(Vertical):
154
154
 
155
155
  def update_content(self, text: str) -> None:
156
156
  """Replace all content."""
157
+ self._content = text # Store content for later if _log not ready
157
158
  if self._log:
158
159
  self._log.clear()
159
160
  self._log.write(text)
@@ -307,7 +308,7 @@ class SAAssistantApp(App):
307
308
  if "current_tool_use" in kwargs:
308
309
  tool_use = kwargs["current_tool_use"]
309
310
  if isinstance(tool_use, dict):
310
- tool_id = tool_use.get("id", "")
311
+ tool_id = tool_use.get("toolUseId", "") # Fixed: was "id", should be "toolUseId"
311
312
  tool_name = tool_use.get("name", "tool")
312
313
  # Only add panel once per unique tool_use ID
313
314
  if tool_id and tool_id not in self._seen_tool_ids:
File without changes
File without changes