mutbot 0.2.0__tar.gz → 0.2.2__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 (57) hide show
  1. {mutbot-0.2.0 → mutbot-0.2.2}/PKG-INFO +1 -1
  2. {mutbot-0.2.0 → mutbot-0.2.2}/pyproject.toml +1 -1
  3. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/__init__.py +1 -1
  4. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/__main__.py +3 -0
  5. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/PKG-INFO +1 -1
  6. {mutbot-0.2.0 → mutbot-0.2.2}/LICENSE +0 -0
  7. {mutbot-0.2.0 → mutbot-0.2.2}/README.md +0 -0
  8. {mutbot-0.2.0 → mutbot-0.2.2}/setup.cfg +0 -0
  9. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/builtins/__init__.py +0 -0
  10. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/builtins/guide.py +0 -0
  11. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/builtins/menus.py +0 -0
  12. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/builtins/setup_provider.py +0 -0
  13. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/cli/__init__.py +0 -0
  14. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/cli/proxy_log.py +0 -0
  15. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/copilot/__init__.py +0 -0
  16. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/copilot/auth.py +0 -0
  17. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/copilot/provider.py +0 -0
  18. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/menu.py +0 -0
  19. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/proxy/__init__.py +0 -0
  20. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/proxy/logging.py +0 -0
  21. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/proxy/routes.py +0 -0
  22. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/proxy/translation.py +0 -0
  23. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/__init__.py +0 -0
  24. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/config.py +0 -0
  25. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/menu_impl.py +0 -0
  26. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/session_impl.py +0 -0
  27. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/session_logging.py +0 -0
  28. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/storage.py +0 -0
  29. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/terminal.py +0 -0
  30. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/runtime/workspace.py +0 -0
  31. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/session.py +0 -0
  32. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/toolkits/__init__.py +0 -0
  33. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/toolkits/session_toolkit.py +0 -0
  34. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/__init__.py +0 -0
  35. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/agent_bridge.py +0 -0
  36. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/connection.py +0 -0
  37. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/routes.py +0 -0
  38. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/rpc.py +0 -0
  39. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/serializers.py +0 -0
  40. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot/web/server.py +0 -0
  41. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/SOURCES.txt +0 -0
  42. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/dependency_links.txt +0 -0
  43. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/entry_points.txt +0 -0
  44. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/requires.txt +0 -0
  45. {mutbot-0.2.0 → mutbot-0.2.2}/src/mutbot.egg-info/top_level.txt +0 -0
  46. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_config_system.py +0 -0
  47. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_proxy_translation.py +0 -0
  48. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_rpc.py +0 -0
  49. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_rpc_handlers.py +0 -0
  50. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_runtime_imports.py +0 -0
  51. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_runtime_menu.py +0 -0
  52. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_runtime_session.py +0 -0
  53. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_runtime_terminal.py +0 -0
  54. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_session_persistence.py +0 -0
  55. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_setup_integration.py +0 -0
  56. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_setup_provider.py +0 -0
  57. {mutbot-0.2.0 → mutbot-0.2.2}/tests/test_workspace_selector.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mutbot
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: A Python AI Bot based on mutagent
5
5
  Author: tiwb
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mutbot"
7
- version = "0.2.0"
7
+ version = "0.2.2"
8
8
  description = "A Python AI Bot based on mutagent"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,6 +1,6 @@
1
1
  """MutBot — 基于 mutagent 的 Web 应用。"""
2
2
 
3
- __version__ = "0.2.999"
3
+ __version__ = "0.2.2"
4
4
 
5
5
  from mutbot.session import Session, AgentSession, TerminalSession, DocumentSession
6
6
  from mutbot.menu import Menu, MenuItem, MenuResult
@@ -5,7 +5,10 @@ import logging
5
5
 
6
6
 
7
7
  def main():
8
+ import mutbot
9
+
8
10
  parser = argparse.ArgumentParser(description="MutBot Web UI")
11
+ parser.add_argument("-V", "--version", action="version", version=f"mutbot {mutbot.__version__}")
9
12
  parser.add_argument("--host", default="127.0.0.1", help="Bind host (default: 127.0.0.1)")
10
13
  parser.add_argument("--port", type=int, default=8741, help="Bind port (default: 8741)")
11
14
  parser.add_argument("--debug", action="store_true", help="Enable debug logging to console")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mutbot
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: A Python AI Bot based on mutagent
5
5
  Author: tiwb
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes