Nano-SD 0.2.1__py3-none-any.whl

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 (180) hide show
  1. nano_sd-0.2.1.dist-info/METADATA +405 -0
  2. nano_sd-0.2.1.dist-info/RECORD +180 -0
  3. nano_sd-0.2.1.dist-info/WHEEL +4 -0
  4. nano_sd-0.2.1.dist-info/entry_points.txt +2 -0
  5. nano_sd-0.2.1.dist-info/licenses/LICENSE +21 -0
  6. nano_sd-0.2.1.dist-info/licenses/THIRD_PARTY_NOTICES.md +144 -0
  7. nanobot/__init__.py +48 -0
  8. nanobot/__main__.py +8 -0
  9. nanobot/agent/__init__.py +19 -0
  10. nanobot/agent/autocompact.py +96 -0
  11. nanobot/agent/context.py +270 -0
  12. nanobot/agent/hook.py +141 -0
  13. nanobot/agent/loop.py +1764 -0
  14. nanobot/agent/memory.py +955 -0
  15. nanobot/agent/model_presets.py +65 -0
  16. nanobot/agent/progress_hook.py +178 -0
  17. nanobot/agent/runner.py +1353 -0
  18. nanobot/agent/skills.py +242 -0
  19. nanobot/agent/subagent.py +392 -0
  20. nanobot/agent/tools/__init__.py +31 -0
  21. nanobot/agent/tools/apply_patch.py +290 -0
  22. nanobot/agent/tools/base.py +296 -0
  23. nanobot/agent/tools/cli_apps.py +133 -0
  24. nanobot/agent/tools/context.py +60 -0
  25. nanobot/agent/tools/cron.py +295 -0
  26. nanobot/agent/tools/exec_session.py +598 -0
  27. nanobot/agent/tools/file_state.py +205 -0
  28. nanobot/agent/tools/filesystem.py +1022 -0
  29. nanobot/agent/tools/image_generation.py +209 -0
  30. nanobot/agent/tools/loader.py +116 -0
  31. nanobot/agent/tools/long_task.py +251 -0
  32. nanobot/agent/tools/mcp.py +942 -0
  33. nanobot/agent/tools/message.py +273 -0
  34. nanobot/agent/tools/path_utils.py +30 -0
  35. nanobot/agent/tools/registry.py +125 -0
  36. nanobot/agent/tools/runtime_state.py +62 -0
  37. nanobot/agent/tools/sandbox.py +55 -0
  38. nanobot/agent/tools/schema.py +232 -0
  39. nanobot/agent/tools/search.py +584 -0
  40. nanobot/agent/tools/self.py +484 -0
  41. nanobot/agent/tools/shell.py +652 -0
  42. nanobot/agent/tools/spawn.py +96 -0
  43. nanobot/agent/tools/web.py +864 -0
  44. nanobot/api/__init__.py +1 -0
  45. nanobot/api/server.py +399 -0
  46. nanobot/apps/__init__.py +5 -0
  47. nanobot/apps/cli/__init__.py +13 -0
  48. nanobot/apps/cli/service.py +1238 -0
  49. nanobot/apps/cli/utils.py +62 -0
  50. nanobot/apps/protocol.py +56 -0
  51. nanobot/bus/__init__.py +6 -0
  52. nanobot/bus/events.py +53 -0
  53. nanobot/bus/progress.py +70 -0
  54. nanobot/bus/queue.py +44 -0
  55. nanobot/bus/runtime_events.py +251 -0
  56. nanobot/channels/__init__.py +6 -0
  57. nanobot/channels/base.py +270 -0
  58. nanobot/channels/manager.py +509 -0
  59. nanobot/channels/registry.py +95 -0
  60. nanobot/channels/wecom.py +554 -0
  61. nanobot/channels/weixin.py +1546 -0
  62. nanobot/cli/__init__.py +1 -0
  63. nanobot/cli/commands.py +1947 -0
  64. nanobot/cli/models.py +31 -0
  65. nanobot/cli/onboard.py +1385 -0
  66. nanobot/cli/stream.py +230 -0
  67. nanobot/command/__init__.py +6 -0
  68. nanobot/command/builtin.py +686 -0
  69. nanobot/command/router.py +88 -0
  70. nanobot/config/__init__.py +34 -0
  71. nanobot/config/loader.py +177 -0
  72. nanobot/config/paths.py +76 -0
  73. nanobot/config/schema.py +518 -0
  74. nanobot/cron/__init__.py +18 -0
  75. nanobot/cron/service.py +664 -0
  76. nanobot/cron/types.py +83 -0
  77. nanobot/nanobot.py +105 -0
  78. nanobot/off_duty/__init__.py +5 -0
  79. nanobot/off_duty/agent_loop.py +493 -0
  80. nanobot/off_duty/autostart.py +287 -0
  81. nanobot/pairing/__init__.py +33 -0
  82. nanobot/pairing/store.py +254 -0
  83. nanobot/providers/__init__.py +45 -0
  84. nanobot/providers/anthropic_provider.py +692 -0
  85. nanobot/providers/azure_openai_provider.py +186 -0
  86. nanobot/providers/base.py +843 -0
  87. nanobot/providers/bedrock_provider.py +760 -0
  88. nanobot/providers/factory.py +244 -0
  89. nanobot/providers/fallback_provider.py +273 -0
  90. nanobot/providers/github_copilot_provider.py +261 -0
  91. nanobot/providers/image_generation.py +1603 -0
  92. nanobot/providers/openai_codex_provider.py +321 -0
  93. nanobot/providers/openai_compat_provider.py +1486 -0
  94. nanobot/providers/openai_responses/__init__.py +31 -0
  95. nanobot/providers/openai_responses/converters.py +127 -0
  96. nanobot/providers/openai_responses/parsing.py +424 -0
  97. nanobot/providers/registry.py +533 -0
  98. nanobot/providers/transcription.py +221 -0
  99. nanobot/security/__init__.py +1 -0
  100. nanobot/security/network.py +159 -0
  101. nanobot/security/workspace_access.py +430 -0
  102. nanobot/security/workspace_policy.py +85 -0
  103. nanobot/session/__init__.py +5 -0
  104. nanobot/session/goal_state.py +126 -0
  105. nanobot/session/manager.py +749 -0
  106. nanobot/session/turn_continuation.py +240 -0
  107. nanobot/session/webui_turns.py +449 -0
  108. nanobot/skills/README.md +32 -0
  109. nanobot/skills/clawhub/SKILL.md +53 -0
  110. nanobot/skills/cron/SKILL.md +57 -0
  111. nanobot/skills/github/SKILL.md +48 -0
  112. nanobot/skills/image-generation/SKILL.md +66 -0
  113. nanobot/skills/long-goal/SKILL.md +79 -0
  114. nanobot/skills/memory/SKILL.md +36 -0
  115. nanobot/skills/my/SKILL.md +72 -0
  116. nanobot/skills/my/references/examples.md +75 -0
  117. nanobot/skills/skill-creator/SKILL.md +374 -0
  118. nanobot/skills/skill-creator/scripts/init_skill.py +378 -0
  119. nanobot/skills/skill-creator/scripts/package_skill.py +152 -0
  120. nanobot/skills/skill-creator/scripts/quick_validate.py +213 -0
  121. nanobot/skills/summarize/SKILL.md +67 -0
  122. nanobot/skills/tmux/SKILL.md +121 -0
  123. nanobot/skills/tmux/scripts/find-sessions.sh +112 -0
  124. nanobot/skills/tmux/scripts/wait-for-text.sh +83 -0
  125. nanobot/skills/update-setup/SKILL.md +123 -0
  126. nanobot/skills/weather/SKILL.md +49 -0
  127. nanobot/templates/AGENTS.md +23 -0
  128. nanobot/templates/HEARTBEAT.md +14 -0
  129. nanobot/templates/SOUL.md +20 -0
  130. nanobot/templates/USER.md +49 -0
  131. nanobot/templates/__init__.py +0 -0
  132. nanobot/templates/agent/_snippets/untrusted_content.md +2 -0
  133. nanobot/templates/agent/consolidator_archive.md +24 -0
  134. nanobot/templates/agent/dream.md +105 -0
  135. nanobot/templates/agent/evaluator.md +17 -0
  136. nanobot/templates/agent/identity.md +34 -0
  137. nanobot/templates/agent/max_iterations_message.md +1 -0
  138. nanobot/templates/agent/platform_policy.md +10 -0
  139. nanobot/templates/agent/skills_section.md +6 -0
  140. nanobot/templates/agent/subagent_announce.md +8 -0
  141. nanobot/templates/agent/subagent_system.md +19 -0
  142. nanobot/templates/agent/tool_contract.md +67 -0
  143. nanobot/templates/memory/MEMORY.md +23 -0
  144. nanobot/templates/memory/__init__.py +0 -0
  145. nanobot/utils/__init__.py +42 -0
  146. nanobot/utils/artifacts.py +122 -0
  147. nanobot/utils/document.py +319 -0
  148. nanobot/utils/evaluator.py +94 -0
  149. nanobot/utils/file_edit_events.py +964 -0
  150. nanobot/utils/gitstore.py +390 -0
  151. nanobot/utils/helpers.py +639 -0
  152. nanobot/utils/image_generation_intent.py +27 -0
  153. nanobot/utils/llm_runtime.py +22 -0
  154. nanobot/utils/logging_bridge.py +47 -0
  155. nanobot/utils/media_decode.py +55 -0
  156. nanobot/utils/path.py +107 -0
  157. nanobot/utils/progress_events.py +101 -0
  158. nanobot/utils/prompt_templates.py +35 -0
  159. nanobot/utils/restart.py +84 -0
  160. nanobot/utils/runtime.py +180 -0
  161. nanobot/utils/searchusage.py +168 -0
  162. nanobot/utils/subagent_channel_display.py +59 -0
  163. nanobot/utils/tool_hints.py +142 -0
  164. nanobot/webui/__init__.py +2 -0
  165. nanobot/webui/cli_apps_api.py +93 -0
  166. nanobot/webui/gateway_services.py +70 -0
  167. nanobot/webui/gateway_tokens.py +82 -0
  168. nanobot/webui/http_utils.py +151 -0
  169. nanobot/webui/mcp_presets_api.py +1318 -0
  170. nanobot/webui/mcp_presets_runtime.py +5 -0
  171. nanobot/webui/media_api.py +284 -0
  172. nanobot/webui/media_gateway.py +92 -0
  173. nanobot/webui/settings_api.py +1303 -0
  174. nanobot/webui/settings_routes.py +329 -0
  175. nanobot/webui/sidebar_state.py +196 -0
  176. nanobot/webui/thread_disk.py +31 -0
  177. nanobot/webui/transcript.py +922 -0
  178. nanobot/webui/websocket_logging.py +45 -0
  179. nanobot/webui/workspaces.py +283 -0
  180. nanobot/webui/ws_http.py +494 -0
@@ -0,0 +1,405 @@
1
+ Metadata-Version: 2.4
2
+ Name: Nano-SD
3
+ Version: 0.2.1
4
+ Summary: Nano-SD 关机小助手 - 基于 nanobot 二次开发,企业微信加班记录与自动关机
5
+ Project-URL: Homepage, https://github.com/yourname/nano-sd
6
+ Author: Xubin Ren, the nanobot contributors
7
+ Maintainer-email: 你的名称 <your@email.com>
8
+ License: MIT
9
+ License-File: LICENSE
10
+ License-File: THIRD_PARTY_NOTICES.md
11
+ Keywords: assistant,overtime,shutdown,wecom
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.11
18
+ Requires-Dist: anthropic<1.0.0,>=0.45.0
19
+ Requires-Dist: croniter<7.0.0,>=6.0.0
20
+ Requires-Dist: dulwich<1.0.0,>=0.22.0
21
+ Requires-Dist: filelock>=3.25.2
22
+ Requires-Dist: httpx<1.0.0,>=0.28.0
23
+ Requires-Dist: jinja2<4.0.0,>=3.1.0
24
+ Requires-Dist: loguru<1.0.0,>=0.7.3
25
+ Requires-Dist: mcp<2.0.0,>=1.26.0
26
+ Requires-Dist: openai>=2.8.0
27
+ Requires-Dist: prompt-toolkit<4.0.0,>=3.0.50
28
+ Requires-Dist: pydantic-settings<3.0.0,>=2.12.0
29
+ Requires-Dist: pydantic<3.0.0,>=2.12.0
30
+ Requires-Dist: pyyaml<7.0.0,>=6.0
31
+ Requires-Dist: rich<15.0.0,>=14.0.0
32
+ Requires-Dist: typer<1.0.0,>=0.20.0
33
+ Requires-Dist: websocket-client<2.0.0,>=1.9.0
34
+ Requires-Dist: websockets<17.0,>=16.0
35
+ Provides-Extra: api
36
+ Requires-Dist: aiohttp<4.0.0,>=3.9.0; extra == 'api'
37
+ Provides-Extra: wecom
38
+ Requires-Dist: wecom-aibot-sdk-python>=0.1.5; extra == 'wecom'
39
+ Provides-Extra: weixin
40
+ Requires-Dist: pycryptodome>=3.20.0; extra == 'weixin'
41
+ Requires-Dist: qrcode[pil]>=8.0; extra == 'weixin'
42
+ Description-Content-Type: text/markdown
43
+
44
+ ![nanobot README cover](./images/readme-cover.png)
45
+
46
+ <div align="center">
47
+ <p>
48
+ <a href="https://nanobot.wiki/docs/latest/getting-started/nanobot-overview">English</a> |
49
+ <a href="https://nanobot.wiki/cn/docs/latest/getting-started/nanobot-overview">简体中文</a> |
50
+ <a href="https://nanobot.wiki/zh-Hant/docs/latest/getting-started/nanobot-overview">繁體中文</a> |
51
+ <a href="https://nanobot.wiki/es/docs/latest/getting-started/nanobot-overview">Español</a> |
52
+ <a href="https://nanobot.wiki/fr/docs/latest/getting-started/nanobot-overview">Français</a> |
53
+ <a href="https://nanobot.wiki/id/docs/latest/getting-started/nanobot-overview">Bahasa Indonesia</a> |
54
+ <a href="https://nanobot.wiki/ja/docs/latest/getting-started/nanobot-overview">日本語</a> |
55
+ <a href="https://nanobot.wiki/ko/docs/latest/getting-started/nanobot-overview">한국어</a> |
56
+ <a href="https://nanobot.wiki/ru/docs/latest/getting-started/nanobot-overview">Русский</a> |
57
+ <a href="https://nanobot.wiki/vi/docs/latest/getting-started/nanobot-overview">Tiếng Việt</a>
58
+ </p>
59
+ <p>
60
+ <a href="https://pypi.org/project/nanobot-ai/"><img src="https://img.shields.io/pypi/v/nanobot-ai" alt="PyPI"></a>
61
+ <a href="https://pepy.tech/project/nanobot-ai"><img src="https://static.pepy.tech/badge/nanobot-ai" alt="Downloads"></a>
62
+ <img src="https://img.shields.io/badge/python-≥3.11-blue" alt="Python">
63
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
64
+ <a href="https://github.com/HKUDS/nanobot/graphs/commit-activity" target="_blank">
65
+ <img alt="Commits last month" src="https://img.shields.io/github/commit-activity/m/HKUDS/nanobot?labelColor=%20%2332b583&color=%20%2312b76a"></a>
66
+ <a href="https://github.com/HKUDS/nanobot/issues?q=is%3Aissue%20is%3Aclosed" target="_blank">
67
+ <img alt="Issues closed" src="https://img.shields.io/github/issues-search?query=repo%3AHKUDS%2Fnanobot%20is%3Aissue%20is%3Aclosed&label=issues%20closed&labelColor=%20%237d89b0&color=%20%235d6b98"></a>
68
+ <a href="https://twitter.com/intent/follow?screen_name=nanobot_project" target="_blank">
69
+ <img src="https://img.shields.io/twitter/follow/nanobot_project?logo=X&color=%20%23f5f5f5" alt="follow on X(Twitter)"></a>
70
+ <a href="https://nanobot.wiki/docs/latest/getting-started/nanobot-overview"><img src="https://img.shields.io/badge/Docs-nanobot.wiki-blue?style=flat&logo=readthedocs&logoColor=white" alt="Docs"></a>
71
+ <a href="./COMMUNICATION.md"><img src="https://img.shields.io/badge/Feishu-Group-E9DBFC?style=flat&logo=feishu&logoColor=white" alt="Feishu"></a>
72
+ <a href="./COMMUNICATION.md"><img src="https://img.shields.io/badge/WeChat-Group-C5EAB4?style=flat&logo=wechat&logoColor=white" alt="WeChat"></a>
73
+ <a href="https://discord.gg/MnCvHqpUGB"><img src="https://img.shields.io/badge/Discord-Community-5865F2?style=flat&logo=discord&logoColor=white" alt="Discord"></a>
74
+ </p>
75
+ </div>
76
+
77
+ 🐈 **nanobot** is an open-source, ultra-lightweight agent runtime for people who want to own their AI agent stack. It gives you a small, readable core plus the practical pieces for real long-running agents: WebUI, chat channels, tools, memory, MCP, model routing, and deployment.
78
+
79
+ ## 📢 News
80
+
81
+ - **2026-06-01** 🚀 Released **v0.2.1** — **The Workbench Release** turns the packaged WebUI into a daily agent workbench: clearer Thought/response timelines, live file-edit activity, project workspaces, model and context controls, steadier sustained goals, CLI Apps + MCP extensions, and broader provider/channel support. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.2.1) for details.
82
+ - **2026-05-30** 🔐 Safer Matrix verification, bounded media downloads, clearer WebUI model timeline.
83
+ - **2026-05-29** 🧩 Extension registry, context-window tuning, document extraction controls.
84
+ - **2026-05-28** 🗂️ Project workspaces, access controls, steadier goals and streaming.
85
+ - **2026-05-27** ⏱️ Codex streams respect idle timeouts during long runs.
86
+ - **2026-05-26** 📡 Telegram webhooks, refreshed Kagi search, cleaner transport errors.
87
+ - **2026-05-25** 🔌 Unified CLI Apps and MCP, Step Plan support, steadier sustained goals.
88
+ - **2026-05-24** 🧰 MCP presets, richer slash actions, configurable OpenAI-compatible requests.
89
+ - **2026-05-23** 🖼️ Zhipu image generation, longer exec windows, cleaner transcription config.
90
+ - **2026-05-22** 🛠️ CLI Apps, more image providers, safer web redirects and edits.
91
+
92
+ <details>
93
+ <summary>Earlier news</summary>
94
+
95
+ - **2026-05-21** ⚡ Novita provider, faster sidebar, smoother coding tools and Weixin replies.
96
+ - **2026-05-20** 📶 Signal channel, faster gateway startup, multilingual README links.
97
+ - **2026-05-19** 🎨 Image provider registry, StepFun and Skywork, stronger WebUI controls.
98
+ - **2026-05-18** 🖌️ Gemini and MiniMax images, Ant Ling, live file-edit activity.
99
+ - **2026-05-17** 🌊 Smoother WebUI streaming, AutoCompact fixes, buffered CLI reasoning.
100
+ - **2026-05-16** 🧠 Atomic Chat provider, goal-aware timeouts, safer exec URL handling.
101
+ - **2026-05-15** 🚀 Released **v0.2.0** — **`/goal`** holds sustained objectives across turns, WebUI now ships inside the wheel, image generation end to end, 5 new providers with `fallback_models`, and a real agent-loop refactor. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.2.0) for details.
102
+ - **2026-05-14** 🎯 **`/goal`** for long-term objectives, visible multi-step progress, long-horizon missions in chat.
103
+ - **2026-05-13** 🧠 Streaming reasoning before answers, automatic backup models, smoother plug-in reconnects.
104
+ - **2026-05-12** 🎛️ Saved model presets with WebUI badge, simpler plug-in tools, quieter Feishu topic threads.
105
+ - **2026-05-11** 🖥️ NVIDIA NIM support, terminal bot name and icon, streamed reasoning and MiMo toggle clarity.
106
+ - **2026-05-09** 🖼️ Sharper image replay, BYO web-search keys in Settings, Feishu threads routed cleanly.
107
+ - **2026-05-08** ✨ Inline chat image, redesigned Settings and keys, Dream memory aligned with visible history.
108
+ - **2026-05-07** 📜 Locale-aware slash palette in WebUI, LAN login, faithful HTTP streaming responses.
109
+ - **2026-05-06** 🧩 Tunable tool hint, steadier voice and plug-in startups, schedules and reminders that stick.
110
+ - **2026-05-05** 🛡️ Quiet deny for unknown Telegram chats, Dream cleanup, fuller automation summaries.
111
+ - **2026-05-04** 🔐 Safer DingTalk outbound media links, durable cron persistence, DeepSeek polish.
112
+ - **2026-05-03** ⚙️ Predictable shell allow-list behavior, isolated chats mid-reply, cleaner interactive retries.
113
+ - **2026-05-02** 🐈 LongCat support, smarter token sizing hints, clearer bundled upgrade guidance.
114
+ - **2026-05-01** ☁️ Native AWS Bedrock provider, tighter helper handoffs and scoped session files.
115
+ - **2026-04-30** 💬 Feishu threads that honor replies and topics, WhatsApp bridge refresh on source edits.
116
+ - **2026-04-29** 🚀 Released **v0.1.5.post3** — Smarter threads on Feishu, Discord, Slack, and Teams; **DeepSeek-V4**; Hugging Face & Olostep; choices, `/history`, and steadier long chats. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5.post3) for details.
117
+ - **2026-04-28** 🌐 Olostep web search, Hugging Face provider, safer workspace-tool interruptions.
118
+ - **2026-04-27** 💬 `/history` command, smarter session replay caps, smoother Discord / Slack threads.
119
+ - **2026-04-26** 🧭 Natural cron reminders, thread-aware restarts, safer local provider and shell behavior.
120
+ - **2026-04-25** 🧩 `ask_user` choices, macOS LaunchAgent deployment, MSTeams stale-reference cleanup.
121
+ - **2026-04-24** 🎥 Video attachments for channels, DeepSeek thinking control, faster document startup.
122
+ - **2026-04-23** 🧵 Discord thread sessions, Telegram inline buttons, structured tool progress updates.
123
+ - **2026-04-22** 🔎 GitHub Copilot GPT-5 / o-series support, configurable web fetch, WebUI image uploads.
124
+ - **2026-04-21** 🚀 Released **v0.1.5.post2** — Windows & Python 3.14 support, Office document reading, SSE streaming for the OpenAI-compatible API, and stronger reliability across sessions, memory, and channels. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5.post2) for details.
125
+ - **2026-04-20** 🎨 Kimi K2.6 support, Telegram long-message split, WebUI typography & dark-mode polish.
126
+ - **2026-04-19** 🌐 WebUI i18n locale switcher, atomic session writes with auto-repair.
127
+ - **2026-04-18** 🧪 Initial WebUI chat, smarter setup wizard menus, WebSocket multi-chat multiplexing.
128
+ - **2026-04-17** 🪟 Windows & Python 3.14 CI, Dream line-age memory, email self-loop guard.
129
+ - **2026-04-16** 📡 SSE streaming for OpenAI-compatible API, Discord channel allow-list.
130
+ - **2026-04-15** 🎛️ LM Studio & nullable API keys, MiniMax thinking endpoint, runtime SelfTool.
131
+ - **2026-04-14** 🚀 Released **v0.1.5.post1** — Dream skill discovery, mid-turn follow-up injection, WebSocket channel, and deeper channel integrations. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5.post1) for details.
132
+ - **2026-04-13** 🛡️ Agent turn hardened — user messages persisted early, auto-compact skips active tasks.
133
+ - **2026-04-12** 🔒 Lark global domain support, Dream learns discovered skills, shell sandbox tightened.
134
+ - **2026-04-11** ⚡ Context compact shrinks sessions on the fly; Kagi web search; QQ & WeCom full media.
135
+ - **2026-04-10** 📓 Multiple MCP servers, Feishu streaming & done-emoji.
136
+ - **2026-04-09** 🔌 WebSocket channel, unified cross-channel session, `disabled_skills` config.
137
+ - **2026-04-08** 📤 API file uploads, OpenAI reasoning auto-routing with Responses fallback.
138
+ - **2026-04-07** 🧠 Anthropic adaptive thinking, MCP resources & prompts exposed as tools.
139
+ - **2026-04-06** 🛰️ Langfuse observability, unified Whisper transcription, email attachments.
140
+ - **2026-04-05** 🚀 Released **v0.1.5** — sturdier long-running tasks, Dream two-stage memory, production-ready sandboxing and programming Agent SDK. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5) for details.
141
+ - **2026-04-04** 🚀 Jinja2 response templates, Dream memory hardened, smarter retry handling.
142
+ - **2026-04-03** 🧠 Xiaomi MiMo provider, chain-of-thought reasoning visible, Telegram UX polish.
143
+ - **2026-04-02** 🧱 Long-running tasks run more reliably — core runtime hardening.
144
+ - **2026-04-01** 🔑 GitHub Copilot auth restored; stricter workspace paths; OpenRouter Claude caching fix.
145
+ - **2026-03-31** 🛰️ WeChat multimodal alignment, Discord/Matrix polish, Python SDK facade, MCP and tool fixes.
146
+ - **2026-03-30** 🧩 OpenAI-compatible API tightened; composable agent lifecycle hooks.
147
+ - **2026-03-29** 💬 WeChat voice, typing, QR/media resilience; fixed-session OpenAI-compatible API.
148
+ - **2026-03-28** 📚 Provider docs refresh; skill template wording fix.
149
+ - **2026-03-27** 🚀 Released **v0.1.4.post6** — architecture decoupling, litellm removal, end-to-end streaming, WeChat channel, and a security fix. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post6) for details.
150
+ - **2026-03-26** 🏗️ Agent runner extracted and lifecycle hooks unified; stream delta coalescing at boundaries.
151
+ - **2026-03-25** 🌏 StepFun provider, configurable timezone, Gemini thought signatures.
152
+ - **2026-03-24** 🔧 WeChat compatibility, Feishu CardKit streaming, test suite restructured.
153
+ - **2026-03-23** 🔧 Command routing refactored for plugins, WhatsApp/WeChat media, unified channel login CLI.
154
+ - **2026-03-22** ⚡ End-to-end streaming, WeChat channel, Anthropic cache optimization, `/status` command.
155
+ - **2026-03-21** 🔒 Replace `litellm` with native `openai` + `anthropic` SDKs. Please see [commit](https://github.com/HKUDS/nanobot/commit/3dfdab7).
156
+ - **2026-03-20** 🧙 Interactive setup wizard — pick your provider, model autocomplete, and you're good to go.
157
+ - **2026-03-19** 💬 Telegram gets more resilient under load; Feishu now renders code blocks properly.
158
+ - **2026-03-18** 📷 Telegram can now send media via URL. Cron schedules show human-readable details.
159
+ - **2026-03-17** ✨ Feishu formatting glow-up, Slack reacts when done, custom endpoints support extra headers, and image handling is more reliable.
160
+ - **2026-03-16** 🚀 Released **v0.1.4.post5** — a refinement-focused release with stronger reliability and channel support, and a more dependable day-to-day experience. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post5) for details.
161
+ - **2026-03-15** 🧩 DingTalk rich media, smarter built-in skills, and cleaner model compatibility.
162
+ - **2026-03-14** 💬 Channel plugins, Feishu replies, and steadier MCP, QQ, and media handling.
163
+ - **2026-03-13** 🌐 Multi-provider web search, LangSmith, and broader reliability improvements.
164
+ - **2026-03-12** 🚀 VolcEngine support, Telegram reply context, `/restart`, and sturdier memory.
165
+ - **2026-03-11** 🔌 WeCom, Ollama, cleaner discovery, and safer tool behavior.
166
+ - **2026-03-10** 🧠 Token-based memory, shared retries, and cleaner gateway and Telegram behavior.
167
+ - **2026-03-09** 💬 Slack thread polish and better Feishu audio compatibility.
168
+ - **2026-03-08** 🚀 Released **v0.1.4.post4** — a reliability-packed release with safer defaults, better multi-instance support, sturdier MCP, and major channel and provider improvements. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post4) for details.
169
+ - **2026-03-07** 🚀 Azure OpenAI provider, WhatsApp media, QQ group chats, and more Telegram/Feishu polish.
170
+ - **2026-03-06** 🪄 Lighter providers, smarter media handling, and sturdier memory and CLI compatibility.
171
+ - **2026-03-05** ⚡️ Telegram draft streaming, MCP SSE support, and broader channel reliability fixes.
172
+ - **2026-03-04** 🛠️ Dependency cleanup, safer file reads, and another round of test and Cron fixes.
173
+ - **2026-03-03** 🧠 Cleaner user-message merging, safer multimodal saves, and stronger Cron guards.
174
+ - **2026-03-02** 🛡️ Safer default access control, sturdier Cron reloads, and cleaner Matrix media handling.
175
+ - **2026-03-01** 🌐 Web proxy support, smarter Cron reminders, and Feishu rich-text parsing improvements.
176
+ - **2026-02-28** 🚀 Released **v0.1.4.post3** — cleaner context, hardened session history, and smarter agent. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post3) for details.
177
+ - **2026-02-27** 🧠 Experimental thinking mode support, DingTalk media messages, Feishu and QQ channel fixes.
178
+ - **2026-02-26** 🛡️ Session poisoning fix, WhatsApp dedup, Windows path guard, Mistral compatibility.
179
+ - **2026-02-25** 🧹 New Matrix channel, cleaner session context, auto workspace template sync.
180
+ - **2026-02-24** 🚀 Released **v0.1.4.post2** — a reliability-focused release with a redesigned heartbeat, prompt cache optimization, and hardened provider & channel stability. See [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post2) for details.
181
+ - **2026-02-23** 🔧 Virtual tool-call heartbeat, prompt cache optimization, Slack mrkdwn fixes.
182
+ - **2026-02-22** 🛡️ Slack thread isolation, Discord typing fix, agent reliability improvements.
183
+ - **2026-02-21** 🎉 Released **v0.1.4.post1** — new providers, media support across channels, and major stability improvements. See [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4.post1) for details.
184
+ - **2026-02-20** 🐦 Feishu now receives multimodal files from users. More reliable memory under the hood.
185
+ - **2026-02-19** ✨ Slack now sends files, Discord splits long messages, and subagents work in CLI mode.
186
+ - **2026-02-18** ⚡️ nanobot now supports VolcEngine, MCP custom auth headers, and Anthropic prompt caching.
187
+ - **2026-02-17** 🎉 Released **v0.1.4** — MCP support, progress streaming, new providers, and multiple channel improvements. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.4) for details.
188
+ - **2026-02-16** 🦞 nanobot now integrates a [ClawHub](https://clawhub.ai) skill — search and install public agent skills.
189
+ - **2026-02-15** 🔑 nanobot now supports OpenAI Codex provider with OAuth login support.
190
+ - **2026-02-14** 🔌 nanobot now supports MCP! See [MCP section](#mcp-model-context-protocol) for details.
191
+ - **2026-02-13** 🎉 Released **v0.1.3.post7** — includes security hardening and multiple improvements. **Please upgrade to the latest version to address security issues**. See [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.3.post7) for more details.
192
+ - **2026-02-12** 🧠 Redesigned memory system — Less code, more reliable. Join the [discussion](https://github.com/HKUDS/nanobot/discussions/566) about it!
193
+ - **2026-02-11** ✨ Enhanced CLI experience and added MiniMax support!
194
+ - **2026-02-10** 🎉 Released **v0.1.3.post6** with improvements! Check the updates [notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.3.post6) and our [roadmap](https://github.com/HKUDS/nanobot/discussions/431).
195
+ - **2026-02-09** 💬 Added Slack, Email, and QQ support — nanobot now supports multiple chat platforms!
196
+ - **2026-02-08** 🔧 Refactored Providers—adding a new LLM provider now takes just 2 simple steps! Check [here](#providers).
197
+ - **2026-02-07** 🚀 Released **v0.1.3.post5** with Qwen support & several key improvements! Check [here](https://github.com/HKUDS/nanobot/releases/tag/v0.1.3.post5) for details.
198
+ - **2026-02-06** ✨ Added Moonshot/Kimi provider, Discord integration, and enhanced security hardening!
199
+ - **2026-02-05** ✨ Added Feishu channel, DeepSeek provider, and enhanced scheduled tasks support!
200
+ - **2026-02-04** 🚀 Released **v0.1.3.post4** with multi-provider & Docker support! Check [here](https://github.com/HKUDS/nanobot/releases/tag/v0.1.3.post4) for details.
201
+ - **2026-02-03** ⚡ Integrated vLLM for local LLM support and improved natural language task scheduling!
202
+ - **2026-02-02** 🎉 nanobot officially launched! Welcome to try 🐈 nanobot!
203
+
204
+ </details>
205
+
206
+
207
+ ## 💡 Why nanobot
208
+
209
+ - **Persistent workflows**: goals, memory, tools, and chat context survive long-running work.
210
+ - **Chat-native reach**: WebUI, API, Telegram, Feishu, Slack, Discord, Teams, and email.
211
+ - **Model freedom**: OpenAI-compatible APIs, local LLMs, image generation, search, and fallbacks.
212
+ - **Small core**: readable internals with MCP, memory, deployment, and automation built in.
213
+ - **Own your stack**: inspect, customize, self-host, and extend without a giant platform.
214
+
215
+ ## 📦 Install
216
+
217
+ > [!IMPORTANT]
218
+ > If you want the newest features and experiments, install from source.
219
+ >
220
+ > If you want the most stable day-to-day experience, install from PyPI or with `uv`.
221
+
222
+ **Install from source**
223
+
224
+ ```bash
225
+ git clone https://github.com/HKUDS/nanobot.git
226
+ cd nanobot
227
+ pip install -e .
228
+ ```
229
+
230
+ **Install with `uv`**
231
+
232
+ ```bash
233
+ uv tool install nanobot-ai
234
+ ```
235
+
236
+ **Install from PyPI**
237
+
238
+ ```bash
239
+ pip install nanobot-ai
240
+ ```
241
+
242
+ ## 🚀 Quick Start
243
+
244
+ **1. Initialize**
245
+
246
+ ```bash
247
+ nanobot onboard
248
+ ```
249
+
250
+ **2. Configure** (`~/.nanobot/config.json`)
251
+
252
+ Configure these **two parts** in your config (other options have defaults). Add or merge the following blocks into your existing config instead of replacing the whole file.
253
+
254
+ *Set your API key* (e.g. [OpenRouter](https://openrouter.ai/keys), recommended for global users):
255
+
256
+ ```json
257
+ {
258
+ "providers": {
259
+ "openrouter": {
260
+ "apiKey": "sk-or-v1-xxx"
261
+ }
262
+ }
263
+ }
264
+ ```
265
+
266
+ *Set your model* (optionally pin a provider — defaults to auto-detection):
267
+
268
+ ```json
269
+ {
270
+ "agents": {
271
+ "defaults": {
272
+ "provider": "openrouter",
273
+ "model": "anthropic/claude-opus-4-6"
274
+ }
275
+ }
276
+ }
277
+ ```
278
+
279
+ **3. Chat**
280
+
281
+ ```bash
282
+ nanobot agent
283
+ ```
284
+
285
+
286
+ - Want different LLM providers, web search, MCP, security settings, or more config options? See [Configuration](./docs/configuration.md)
287
+ - Want to run locally? Use [Atomic Chat](./docs/configuration.md#atomic-chat-local), [vLLM](./docs/configuration.md#vllm-local-openai-compatible), [Ollama](./docs/configuration.md#ollama-local), and [others](./docs/configuration.md#local-providers).
288
+ - Want to run nanobot in chat apps like Telegram, Discord, WeChat or Feishu? See [Chat Apps](./docs/chat-apps.md)
289
+ - Want Docker or Linux service deployment? See [Deployment](./docs/deployment.md)
290
+
291
+ ## 🌐 WebUI
292
+
293
+ The WebUI ships **inside the published wheel** — no extra build step. Just enable the WebSocket channel and open it in your browser.
294
+
295
+ <p align="center">
296
+ <img src="images/nanobot_webui.png" alt="nanobot webui preview" width="900">
297
+ </p>
298
+
299
+ **1. Enable the WebSocket channel in `~/.nanobot/config.json`**
300
+
301
+ ```json
302
+ { "channels": { "websocket": { "enabled": true } } }
303
+ ```
304
+
305
+ **2. Start the gateway**
306
+
307
+ ```bash
308
+ nanobot gateway
309
+ ```
310
+
311
+ **3. Open the WebUI**
312
+
313
+ Visit [`http://127.0.0.1:8765`](http://127.0.0.1:8765) in your browser. To open it from another device on your LAN, see [WebUI docs → LAN access](./webui/README.md#access-from-another-device-lan).
314
+
315
+ > [!TIP]
316
+ > Working on the WebUI itself? Check out [`webui/README.md`](./webui/README.md) for the Vite dev server (HMR) workflow.
317
+
318
+ ## 🏗️ Architecture
319
+
320
+ <p align="center">
321
+ <img src="images/nanobot_arch.png" alt="nanobot architecture" width="800">
322
+ </p>
323
+
324
+ 🐈 nanobot stays lightweight by centering everything around a small agent loop: messages come in from chat apps, the LLM decides when tools are needed, and memory or skills are pulled in only as context instead of becoming a heavy orchestration layer. That keeps the core path readable and easy to extend, while still letting you add channels, tools, memory, and deployment options without turning the system into a monolith.
325
+
326
+ ## ✨ Features
327
+
328
+ <table align="center">
329
+ <tr align="center">
330
+ <th><p align="center">📈 24/7 Real-Time Market Analysis</p></th>
331
+ <th><p align="center">🚀 Full-Stack Software Engineer</p></th>
332
+ <th><p align="center">📅 Smart Daily Routine Manager</p></th>
333
+ <th><p align="center">📚 Personal Knowledge Assistant</p></th>
334
+ </tr>
335
+ <tr>
336
+ <td align="center"><p align="center"><img src="case/search.gif" width="180" height="400"></p></td>
337
+ <td align="center"><p align="center"><img src="case/code.gif" width="180" height="400"></p></td>
338
+ <td align="center"><p align="center"><img src="case/schedule.gif" width="180" height="400"></p></td>
339
+ <td align="center"><p align="center"><img src="case/memory.gif" width="180" height="400"></p></td>
340
+ </tr>
341
+ <tr>
342
+ <td align="center">Discovery • Insights • Trends</td>
343
+ <td align="center">Develop • Deploy • Scale</td>
344
+ <td align="center">Schedule • Automate • Organize</td>
345
+ <td align="center">Learn • Memory • Reasoning</td>
346
+ </tr>
347
+ </table>
348
+
349
+ ## 📚 Docs
350
+
351
+ Browse the [repo docs](./docs/README.md) for the latest features and GitHub development version, or visit [nanobot.wiki](https://nanobot.wiki/docs/latest/getting-started/nanobot-overview) for the stable release documentation.
352
+
353
+ - Talk to your nanobot with familiar chat apps: [Chat Apps](./docs/chat-apps.md)
354
+ - Configure providers, web search, MCP, and runtime behavior: [Configuration](./docs/configuration.md)
355
+ - Integrate nanobot with local tools and automations: [OpenAI-Compatible API](./docs/openai-api.md) · [Python SDK](./docs/python-sdk.md)
356
+ - Run nanobot with Docker or as a Linux service: [Deployment](./docs/deployment.md)
357
+
358
+ ## 🤝 Contribute & Roadmap
359
+
360
+ PRs welcome! The codebase is intentionally small and readable. 🤗
361
+
362
+ ### Branching Strategy
363
+
364
+ | Branch | Purpose |
365
+ |--------|---------|
366
+ | `main` | Stable releases — bug fixes and minor improvements |
367
+ | `nightly` | Experimental features — new features and breaking changes |
368
+
369
+ **Unsure which branch to target?** See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
370
+
371
+ **Roadmap** — Pick an item and [open a PR](https://github.com/HKUDS/nanobot/pulls)!
372
+
373
+ - **Multi-modal** — See and hear (images, voice, video)
374
+ - **Long-term memory** — Never forget important context
375
+ - **Better reasoning** — Multi-step planning and reflection
376
+ - **More integrations** — Calendar and more
377
+ - **Self-improvement** — Learn from feedback and mistakes
378
+
379
+ ## Contact
380
+
381
+ This project was started by [Xubin Ren](https://github.com/re-bin) as a personal open-source project and continues to be maintained in an individual capacity using personal resources, with contributions from the open-source community. Feel free to contact [xubinrencs@gmail.com](mailto:xubinrencs@gmail.com) for questions, ideas, or collaboration.
382
+
383
+ ### Contributors
384
+
385
+ <a href="https://github.com/HKUDS/nanobot/graphs/contributors">
386
+ <img src="https://contrib.rocks/image?repo=HKUDS/nanobot&max=100&columns=12&updated=20260210" alt="Contributors" />
387
+ </a>
388
+
389
+
390
+ ## ⭐ Star History
391
+
392
+ <div align="center">
393
+ <a href="https://star-history.com/#HKUDS/nanobot&Date">
394
+ <picture>
395
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=HKUDS/nanobot&type=Date&theme=dark" />
396
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=HKUDS/nanobot&type=Date" />
397
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=HKUDS/nanobot&type=Date" style="border-radius: 15px; box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);" />
398
+ </picture>
399
+ </a>
400
+ </div>
401
+
402
+ <p align="center">
403
+ <em> Thanks for visiting ✨ nanobot!</em><br><br>
404
+ <img src="https://visitor-badge.laobi.icu/badge?page_id=HKUDS.nanobot&style=for-the-badge&color=00d4ff" alt="Views">
405
+ </p>
@@ -0,0 +1,180 @@
1
+ nanobot/__init__.py,sha256=RMHdcwruptGHfSr6XCBPgGHCOwWW5kGiEbyesap3NUk,1356
2
+ nanobot/__main__.py,sha256=2oIeqPyFaOWwVJWR-as7MD8XUJD9tpXYi2HiJuS2TVQ,155
3
+ nanobot/nanobot.py,sha256=Wm1I3PJL9QNAMeqSUHxwgD2gDjOes-L9nbh3nVgEuxk,3294
4
+ nanobot/agent/__init__.py,sha256=_i-kjPXgI7Po30EwJ8AKBor6AEG9eyuj4mkTk13oXHs,529
5
+ nanobot/agent/autocompact.py,sha256=o6Sx3L1Fx8xksGTgn7zrwGKQxnOVaX14A52_AsVLwxk,4130
6
+ nanobot/agent/context.py,sha256=dStMhQwJQSbMjOHjQsWmNSiBcq_hy31dXOFg6HwxR4w,11231
7
+ nanobot/agent/hook.py,sha256=OJ0sZqI9s_sgIaPgcD_nTQFFKB7tDJih67t6tbawgQo,5137
8
+ nanobot/agent/loop.py,sha256=qbyyr7zwUp1IGM24CJvoHTUo6Des4EFlZ2Q6HJzEAj0,77177
9
+ nanobot/agent/memory.py,sha256=c4pMuqhOSznUIIGdXbV4QaHgQkVSbpSxLaQA8ek8-k4,38849
10
+ nanobot/agent/model_presets.py,sha256=1uhyHwcIONMxk0mE5s1YwUD5Gz0FP_KjG0TRPsv7T-E,2211
11
+ nanobot/agent/progress_hook.py,sha256=RYaEMTevWOPrfoi0VYzhQeRjt_d6FU8vPwGgA9tcpjY,7005
12
+ nanobot/agent/runner.py,sha256=SxHP_Jf8aldOmefqWwV2lcYDuF0tzNBo96rK0LY49XY,56957
13
+ nanobot/agent/skills.py,sha256=ISDR48DAB-_xBY4IKrPAUyjvg928RMk64mSxM4E8yq8,9060
14
+ nanobot/agent/subagent.py,sha256=GJfOkFo81wKL_jRQ4yldSBIe5v9CVjm6C0cz-c-Szz8,15943
15
+ nanobot/agent/tools/__init__.py,sha256=m5azaLQyOxfMsndOuoU6_-7sgJEJYWfNYEc181eIhG8,733
16
+ nanobot/agent/tools/apply_patch.py,sha256=AvdZ8ov7eQcIYKZt5BpJZuylcBgXVLCMyilUWQm6PHQ,11120
17
+ nanobot/agent/tools/base.py,sha256=gU0zDrRNk9ZnTVjSYREflmoxdcAznsZt5UrTGZL0e40,11383
18
+ nanobot/agent/tools/cli_apps.py,sha256=1AMAESc6eRJlu2HWpESzMpQGS14TWIiujq4xDT7ENV4,4626
19
+ nanobot/agent/tools/context.py,sha256=Ie_AUT4GE1t51NHHVw1EDtgtKvb0K1RlEB28D_QzEX0,1784
20
+ nanobot/agent/tools/cron.py,sha256=qsWVjqomv0K5WGJ2wFowObjAnr8yFf4u5Tw2d2Mrbx0,12293
21
+ nanobot/agent/tools/exec_session.py,sha256=IrMoPhUJoACfY02WPgqCR6mMIZBuX_qwNkSgUZPaLb0,20541
22
+ nanobot/agent/tools/file_state.py,sha256=VZj7oMFRnRwIuxdJ9RZ2ZwHtBCX2XqpEW87h4MEfgBc,6993
23
+ nanobot/agent/tools/filesystem.py,sha256=TnvPKkXrF6b8b82EWNmXHc0wu2lMqZ7jztY6-oMn13A,39663
24
+ nanobot/agent/tools/image_generation.py,sha256=DMGdbZ_yh27ez-BlXTPq_Upuufg5kdqwpxfw6HAWKQo,7964
25
+ nanobot/agent/tools/loader.py,sha256=0I3qyMhfFBiprWNRcwupwAkrje_WmmcJswX8lqubuQY,4871
26
+ nanobot/agent/tools/long_task.py,sha256=B3dGK447E1tuFrKpEAujhgMabXL6cvBzGBzOk3zK4Zk,9818
27
+ nanobot/agent/tools/mcp.py,sha256=BQ7qMGHr_YrIPbMc39pJdGv2FMq6pBWM1kAYszc-3mo,38308
28
+ nanobot/agent/tools/message.py,sha256=7ULOZwgaqmXDYsR4KEcFRYRJ6hE3UryqgoDftOja8aw,11883
29
+ nanobot/agent/tools/path_utils.py,sha256=a13CztRJ3l-3MIes2SYjhvbMplMskTRIAHIeR-MEsXI,917
30
+ nanobot/agent/tools/registry.py,sha256=LVDmnnN_zLYRLkYT79zrT7zIexQ1c2-WlP_turBe2c8,4523
31
+ nanobot/agent/tools/runtime_state.py,sha256=cMclI65kZczEBC26qaxPQF6l6yDwEHYDZeUhXXMi4xA,1491
32
+ nanobot/agent/tools/sandbox.py,sha256=AUh3consY_aQrieBmJzXbLYbBwF59ISuL5HAoueC4xg,2049
33
+ nanobot/agent/tools/schema.py,sha256=UIAGwpYeXsst1PqMJFwMWeR62jmMsWsKu4OFOnq2TtI,7915
34
+ nanobot/agent/tools/search.py,sha256=llJynUY7ZhuaHud26PlIXU0JFv-4YYNu11O0xVsg8hQ,22354
35
+ nanobot/agent/tools/self.py,sha256=7atQbGdpKrBFYoCTeHDQjjNGTvB8jO483fsbJfckRX4,21698
36
+ nanobot/agent/tools/shell.py,sha256=ha5YhBSZm6EFMEdGYbLnrIM-jYZT5Kie5nA6svnzt1g,26043
37
+ nanobot/agent/tools/spawn.py,sha256=7IivrekOhnfowN_brIGsWOWRI1_sWZ3_-hpQCLl9c1w,3805
38
+ nanobot/agent/tools/web.py,sha256=rX-l-QhyOpmNcKpmQXx561_4TttDb3PTKAbrQDvfQj0,35622
39
+ nanobot/api/__init__.py,sha256=xDA6V9QgQ4a5NV0DcWSPssQx9eQ2s4SQa-6LwrSUMwo,47
40
+ nanobot/api/server.py,sha256=Or2CH92HSo4Q2GfTRfXhBu3-tOk4xHswNRVEQFCJWCE,14785
41
+ nanobot/apps/__init__.py,sha256=nJIelF-AOukt-s1D1XVBTouccF4nD7BN0addvfkHppA,160
42
+ nanobot/apps/protocol.py,sha256=ArWAY3ollaFLMf01O5GWvdq5SleU1QVwkPtBCMDV9kw,1664
43
+ nanobot/apps/cli/__init__.py,sha256=X6QKCliyFrxhml79FLxQlVpaAymtpMByTSFhMAyoh00,251
44
+ nanobot/apps/cli/service.py,sha256=yLRSYZCftdmyWJO_X_PiQQOeAJsTP2_kXzN6N8lMx_A,49453
45
+ nanobot/apps/cli/utils.py,sha256=ub3WMgsb5xI45RkptjijjzTXes3rYOzcUgkaPyrW0d0,2524
46
+ nanobot/bus/__init__.py,sha256=XjGW1WqOw0CHbXf7z14a3Zqcm9tDjPst7gJGZ1NDOjs,242
47
+ nanobot/bus/events.py,sha256=D1RSkXfo8JG3BiYvkmZaK7CxdorAYx8fmUjlXi_yAH4,1989
48
+ nanobot/bus/progress.py,sha256=OwHSlavaaVZVNoNpewlODBliRrsRPyqpUZgsK5wUItk,2234
49
+ nanobot/bus/queue.py,sha256=PN2vqHpQZNzDWmNUcXU2SIAt1TnXDAmG-ZsRuJX08qM,1543
50
+ nanobot/bus/runtime_events.py,sha256=Mo5DL7-szw5MQUL6eCS7sqRIdraACDmn09TP2OldpJY,7677
51
+ nanobot/channels/__init__.py,sha256=K09-H2ykqI72THOCQiuaSJapM7zu-Wz7Zm7TQ09Fx70,203
52
+ nanobot/channels/base.py,sha256=oi2TaUiKzRcxf_rwZvWzh-8ieuSHufhYz9mB_I_JV4I,10049
53
+ nanobot/channels/manager.py,sha256=V50jHmfAkcl_ABdDcq-lKKHvFc1rj4hJmX8nTDgsRzw,22090
54
+ nanobot/channels/registry.py,sha256=81Z8VnBoNRfKUEbDvXDF6naDg6WMK1NhCNvocbX3_lc,3505
55
+ nanobot/channels/wecom.py,sha256=6BP6zsuZpt2vGzevFPRuHtF5OJJvp-OBrTLXiumnIBE,21997
56
+ nanobot/channels/weixin.py,sha256=fxXSrN-z3Sb0MaJig8gvKF1NechghMuKS7TgNfPVJlw,62625
57
+ nanobot/cli/__init__.py,sha256=jBg4lHgqlUQ4lplAEr8G2j_n-n9fniIGWo9E8IBZ_ZM,31
58
+ nanobot/cli/commands.py,sha256=Q6wDcea_nNcb_qTLryd69IeEXLXUQi-hpvgi6aZDeQs,75515
59
+ nanobot/cli/models.py,sha256=KntnEcDDmi3GBwEj9371DfMr0IZEjwcuUtFDV3_FdF0,809
60
+ nanobot/cli/onboard.py,sha256=F6uaHtNZKYgw4x-bVXC6qz6ICYkNCxEzRzux-UqeHmU,50914
61
+ nanobot/cli/stream.py,sha256=6BULcKnzUz35Ge5MuVTRGQqP2MZkf06DQIWSAj_p1nc,8247
62
+ nanobot/command/__init__.py,sha256=Wt-9Lqbl05nke-OJP82mfy1hLNcB3JHHxUGt0oLkyXE,261
63
+ nanobot/command/builtin.py,sha256=SUQYYS5GC1xJyBTJb2jbE0Ey64M3etER7kFt2n4XvzE,24004
64
+ nanobot/command/router.py,sha256=FwnZbOrZpOitiZVsLSwqtBUOagMkORc6tn9HrhYdzTA,2947
65
+ nanobot/config/__init__.py,sha256=mUHniIzgW0_zMe06hq43pgsY40dIIHDVoVhz4YVK4i8,807
66
+ nanobot/config/loader.py,sha256=he6kJfLkcxkSXjzUTrhLJ5pxdCTkC9sl44-ZkeQwXYw,6169
67
+ nanobot/config/paths.py,sha256=TEWweYP7dc7qahrzWWyOn6mPFgvYQxGZHV-NE7yJwuw,2660
68
+ nanobot/config/schema.py,sha256=W1VDqeiZqQwIX6uflfL0CkQy4r7QhWkoQZpo0dO86hs,24315
69
+ nanobot/cron/__init__.py,sha256=IUH3LtEDS450O_MwfU0TdUHMVLn2Y8DVU1xicpbCUDk,537
70
+ nanobot/cron/service.py,sha256=1sBJh0vlAAeyljwrEUrj-gLOV4MIi1HJrsNsIWcdYUA,26018
71
+ nanobot/cron/types.py,sha256=Zj2nBlwO0RDmOg36MWRKdEFqiEziMX-jylELlsqwaWY,2680
72
+ nanobot/off_duty/__init__.py,sha256=TvnJlsvmk93ncOvGviwCiR-uXbfYp-_v90y8Sle0TJw,161
73
+ nanobot/off_duty/agent_loop.py,sha256=fI9WtNV5JchI3tp_gI5cxbEn-2ICi3OrI9B7saJJnUI,18560
74
+ nanobot/off_duty/autostart.py,sha256=B5MTIOYwVkmTY6AfDypkJ8H43HREu6cUyiRNBf2O1JM,9218
75
+ nanobot/pairing/__init__.py,sha256=bOqROF9gPa40fHDMR7BjDUdopcfXeH-Qjbgw6Ihu0Eg,759
76
+ nanobot/pairing/store.py,sha256=tNAsggwaU-Xex6dYVVVla0NmJ1yY_EJ3T5KGDLK_1Cw,8586
77
+ nanobot/providers/__init__.py,sha256=wIA4sVZTT1UaLV9k7CdxZsCgwYL1Ll6hbEWp39bKnAo,1613
78
+ nanobot/providers/anthropic_provider.py,sha256=KAvSFAQNRSV9TCPYgfJjbMn8NYgp4xzSF5v9PeWoHy8,29439
79
+ nanobot/providers/azure_openai_provider.py,sha256=rM_Vr7JywhjrFl-EqKAVd_DdmUXxldrtalJmrYcpGko,6868
80
+ nanobot/providers/base.py,sha256=cjwqu0MoTEvLd31gpv66HST1NE2XTzK4kmtFFsDJv-I,34150
81
+ nanobot/providers/bedrock_provider.py,sha256=gzFFesK8tT6FWazmbBNTTT-QzIm9L7Lg6cAhYmeZJug,30842
82
+ nanobot/providers/factory.py,sha256=n2M500I94GgfKpiO_WN5E6FZrsc-Du4RRh3WWSFdU_Q,9151
83
+ nanobot/providers/fallback_provider.py,sha256=02EIyEQQP9K1_1xWdcWkDZ9lkeee0T2zINw6K3dFek0,10118
84
+ nanobot/providers/github_copilot_provider.py,sha256=kCml-TS6qgIZ4_Y16iy6h2EzCB6gEZ_YuwUMjwpWkaI,9950
85
+ nanobot/providers/image_generation.py,sha256=fE1quWRTdiVoe2qZ7pjwv7zPEsMHBqNjNErlvgITOWQ,54957
86
+ nanobot/providers/openai_codex_provider.py,sha256=hQn_rlR4an5fwTHryg7bvI7jS5NgiMBhBy1cVULIUu8,12910
87
+ nanobot/providers/openai_compat_provider.py,sha256=uM4GLeyxJFSzmS5Kxb7ilpzM_3TQD490dzcSK6b63IU,63086
88
+ nanobot/providers/registry.py,sha256=7hIqvptuON31u2-8ThQAUtn1EcGEV0G-C76ztMPiHpg,19297
89
+ nanobot/providers/transcription.py,sha256=s3Eqgq2hntiA8OWmfDvs66AwumDB2mOEQfMthcSYFY4,7738
90
+ nanobot/providers/openai_responses/__init__.py,sha256=hCCmZGYIi7I4YmylKx_Hh2CwBlIaXeOLUY_WmhcbTkU,771
91
+ nanobot/providers/openai_responses/converters.py,sha256=SPskNAHT2KXITlxrEVBGQkThbni4uR5D9NAtt3zDlmI,4981
92
+ nanobot/providers/openai_responses/parsing.py,sha256=UJN7c6X0JOaiPZh-ld410Hm2styGPmxvFMkAVQ4hLDE,19614
93
+ nanobot/security/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
94
+ nanobot/security/network.py,sha256=BxmWF8-ftfV29KWqEnhUjeTBkqKkJQK-IvgnAnPRjQQ,5685
95
+ nanobot/security/workspace_access.py,sha256=uNjY3XKWcXOb3McdCPsdl2EoN0EPn_QmXbtobPeRj38,13998
96
+ nanobot/security/workspace_policy.py,sha256=razq-uExSfcu7PLBx-5JIboNRwwfbt7XcGPnWsWfUrU,3130
97
+ nanobot/session/__init__.py,sha256=iRapdOnCxmveNhCp_eYPpf1qF01eIkxmww50DQL3AtM,140
98
+ nanobot/session/goal_state.py,sha256=H4sT_truwlXFJMoNPejsONqbFdPjk1lSJP7Er7sjHQ8,4945
99
+ nanobot/session/manager.py,sha256=K3TRueC1rfi3Ndiqh1Qpcs-k1VZser0sZ6ft5N_Sry4,30962
100
+ nanobot/session/turn_continuation.py,sha256=2aLB3a2bb_jjMW4nirCfVzmV7smPiSm4ndCmm9nq9CY,8716
101
+ nanobot/session/webui_turns.py,sha256=MSOJud0o4Ko4cqZ4W4jOUVy7fuKjvXowQ8W3OrsbQG4,15704
102
+ nanobot/skills/README.md,sha256=BRhrTesUO0McBkbve4CmMlhzh3b_XP_pnKfF-_cmIVI,1367
103
+ nanobot/skills/clawhub/SKILL.md,sha256=Efy3RZj6nE283S19361-qyFePkBvrovyx3XfxK_ozIs,1437
104
+ nanobot/skills/cron/SKILL.md,sha256=72jlhMAS0De5KSAvYUXN-s_QAm3r8FbLuFBMXr5IOVA,1562
105
+ nanobot/skills/github/SKILL.md,sha256=E6yUXObarGUOUaGKuAZWdbREJ48hFVG7161qd1QrYrQ,1422
106
+ nanobot/skills/image-generation/SKILL.md,sha256=93RX1EzHvcFtraemKZFZpRx4ziMBHOPJyvLB1FCB-xI,2991
107
+ nanobot/skills/long-goal/SKILL.md,sha256=4hkCX24UC3tRyQ6qH-BVkwR6hS2oa7BBWJG2HkGrEfU,6295
108
+ nanobot/skills/memory/SKILL.md,sha256=uxuTELY0BXAXU-6at87fvFwaZNhnBjzCZvL_-xFBsZk,1875
109
+ nanobot/skills/my/SKILL.md,sha256=fG2pB7TTKZlYrcktCE6tjPXturwLl70eZy5Yo43VN9I,2618
110
+ nanobot/skills/my/references/examples.md,sha256=jIyGGc0SD6i47WADah7j9B4sZRHXkoiCR3ZhxiSkEDw,2163
111
+ nanobot/skills/skill-creator/SKILL.md,sha256=W98u6lQ_2tXlDI9yH-aiXzc9G2lOgi62tt5F5nTvay4,19483
112
+ nanobot/skills/skill-creator/scripts/init_skill.py,sha256=YL5xX4u4DhNSM0WKUNw14Fb3UfLCl0Dd_lL3Mc6azwY,14131
113
+ nanobot/skills/skill-creator/scripts/package_skill.py,sha256=m7JBJJmx0qAEVV_abPbxrGinwlbN5PafxHGju02zc0c,4884
114
+ nanobot/skills/skill-creator/scripts/quick_validate.py,sha256=EiGamCwwzrJsRPuXT-1RwVH4FoIlAWo-hvgs5BpPKXs,7084
115
+ nanobot/skills/summarize/SKILL.md,sha256=LS5CgVKV1--PQ3Wg1RjM6AcYcmKxvJGqTl4u4fvfYog,2107
116
+ nanobot/skills/tmux/SKILL.md,sha256=k_u9n2wAKqhzc4sKSbKgneH28R5txzsYhmY0Uov11CI,4184
117
+ nanobot/skills/tmux/scripts/find-sessions.sh,sha256=8lORaewUF148uVylLl3BI9i2RZhjcobuGhF-EzvDm3g,2942
118
+ nanobot/skills/tmux/scripts/wait-for-text.sh,sha256=lrxCcC9zU8MiM8Ij1h3RHy-ZAzJnru-sg4rqiYOmdzU,2139
119
+ nanobot/skills/update-setup/SKILL.md,sha256=HUErFxklutBiAcvW8hK_Ns39Jr6sCr7q0vuwbU6RfHw,4945
120
+ nanobot/skills/weather/SKILL.md,sha256=xq6IU3oodLJD9TB9M_Hi_LZX5dLbX-zQVOmLcix4aQo,1217
121
+ nanobot/templates/AGENTS.md,sha256=Zv5Cf7Oe02L5VvuLBTuBXyLMIi1XQ6iP71bnhsP7kpI,1404
122
+ nanobot/templates/HEARTBEAT.md,sha256=5D44gVrkksH_riMtMA2bzbCy20rHCxwzmCh8WKUVslg,505
123
+ nanobot/templates/SOUL.md,sha256=PDQeDT1ttJQ49ImiStPKix1nsJg4LjcGPXJyK3FZ5ec,1028
124
+ nanobot/templates/USER.md,sha256=0ZsqBHjvq50idnd1C0uT71KlscIDliUTmh7U50Atjuc,891
125
+ nanobot/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ nanobot/templates/agent/consolidator_archive.md,sha256=DAWUtX0mppv2UVlVEAxpMHZNzkM-yiS5R0__3m6yi44,1388
127
+ nanobot/templates/agent/dream.md,sha256=ptzjQCXMT4Y88T7EQxunYF1T8NN4vgRBljxf7RBcpJo,6863
128
+ nanobot/templates/agent/evaluator.md,sha256=jxdQ5UjNd5lqShAR8goTpeuZlzjNqybOMWip0liP4_Y,1108
129
+ nanobot/templates/agent/identity.md,sha256=LXQF31Nfjk3BVdyMEk0wC1RBqJe-1mJaVo5qlNzNZvQ,2385
130
+ nanobot/templates/agent/max_iterations_message.md,sha256=gbI6ancSJj4jtsI6oH7ahViZMYGIVA9ATazy6d_LF7A,156
131
+ nanobot/templates/agent/platform_policy.md,sha256=cJ4coPmcI1cP_sRzXKmnaa8YQuE77D3fH0vq4dappzU,503
132
+ nanobot/templates/agent/skills_section.md,sha256=sfsQQ4bcQHBQpctf8e4uWPCEodNfjdU9V2RIeq9YQtY,250
133
+ nanobot/templates/agent/subagent_announce.md,sha256=pDSttMrmtdBrigLSaSyzBZMH_niOTV34HUCpNDwU5W8,224
134
+ nanobot/templates/agent/subagent_system.md,sha256=yugvLsMnGYUgKZ_PjvOcedq2UZSJju7yoN0VSgMTaz0,416
135
+ nanobot/templates/agent/tool_contract.md,sha256=LzpO7UoCELaP9dowS65otWfb4yNBZmOGuGZUGTva_iA,4765
136
+ nanobot/templates/agent/_snippets/untrusted_content.md,sha256=0jLrksuuidvbV4V0kXH-HxY7_EQqU0mvG3HPnIFSJ0Q,280
137
+ nanobot/templates/memory/MEMORY.md,sha256=hHNxNTEAB2L65B0ylhXOh3RtAGD7BIdYZSyXZzf1LAY,431
138
+ nanobot/templates/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ nanobot/utils/__init__.py,sha256=BKH29UVF6_s451SJ-OVVxTrZiAv-0br0pIziZBjiNaw,1259
140
+ nanobot/utils/artifacts.py,sha256=4citX7bc7AkzAZpGdBYew5OIw_9Fjx56YJm2PePAQbI,4135
141
+ nanobot/utils/document.py,sha256=DNy4YtubXqaCZJ-LeirLY3NYWxWIaQ9gmJG9zIXtaPc,10070
142
+ nanobot/utils/evaluator.py,sha256=Go5DDGtp77Ms-Oo1Wq22kDCjb0loAirdGAZs8QiKSmg,3364
143
+ nanobot/utils/file_edit_events.py,sha256=wwtFHB8ERXmA7oGepRp03Rp1oPafPg7JVj5vUPmwsKs,32449
144
+ nanobot/utils/gitstore.py,sha256=KGYDzRWznE3zS4iev9Nn7Rn_qWT2RmHl9zB9kTDofYw,14178
145
+ nanobot/utils/helpers.py,sha256=6nqHM9wLgoBXxyfFqbbIpL3R5O_zvOBbVtMapYVcZG8,22937
146
+ nanobot/utils/image_generation_intent.py,sha256=BgjfnQS97H93ziP_pJMSDUAvB1D1Cd7-dMaTcDkKnyw,1123
147
+ nanobot/utils/llm_runtime.py,sha256=_MVjD8lUtj2nZ8mat-uJyOHbIrP0GGo25qMLwFg5Z_I,550
148
+ nanobot/utils/logging_bridge.py,sha256=qx3npEdcUPfx0q9OwS4OJhHChuhu1dmKWoFD_LbNJiI,1756
149
+ nanobot/utils/media_decode.py,sha256=9T1GqG4gGXYtlr4Y-qM0M6AL8ssaNEot3xwX_v7WbmY,1747
150
+ nanobot/utils/path.py,sha256=OKnludWjTEtormi4RriSodx3CNiGSrnFrrZNF5ytD3s,3311
151
+ nanobot/utils/progress_events.py,sha256=WTDFkW5BAiMnHIKzMvDHHunw9UC4QgTFfcE07qbxIFo,3643
152
+ nanobot/utils/prompt_templates.py,sha256=LegHwuSB20bdB2i--hBV1nUtUZ7hDFUoJ9ZVvyM50Zs,1227
153
+ nanobot/utils/restart.py,sha256=3pmAh7OmuRirGFyfvadiHXsXWEPxvOujcqtdgJMGlx4,3020
154
+ nanobot/utils/runtime.py,sha256=dG1Hut94Fse27xyzuE8gIGVCOtEbnRNWE03fMyZZzV0,6727
155
+ nanobot/utils/searchusage.py,sha256=WZTfqvNwvlB64NBlUNcQfjA0o01kAfuq8x2PkI3hxDs,5269
156
+ nanobot/utils/subagent_channel_display.py,sha256=KhAV6o1gcCpGHR3i4_j88RwX3k3VdFCKLleSqCCYX-o,2198
157
+ nanobot/utils/tool_hints.py,sha256=uSeeZf-Wjiv0LAfmrzBmo6I-0aCInxR3nEmzIuinS3Q,5382
158
+ nanobot/webui/__init__.py,sha256=rbT4naqcn3OE9VVA1JcgpAaUxlHyINZC1LoBm9T_Dfc,56
159
+ nanobot/webui/cli_apps_api.py,sha256=V0BkoXLNk6M-6i8A8XvEJ-xmfEXWPGTyd4lejGk3gLo,2786
160
+ nanobot/webui/gateway_services.py,sha256=lpmkOZjMMWDSIB11ddKekojJRk7kVQbWsLUBj4Ek6ts,2112
161
+ nanobot/webui/gateway_tokens.py,sha256=5k1J8PpnnyY1hFFAkqgohd_b8IpFNjmaOdGU2Gth3ho,2875
162
+ nanobot/webui/http_utils.py,sha256=x1Sept3Vq-wEoY5F8iM3ciPhVrzSju6KGEq_I-jzGIA,4798
163
+ nanobot/webui/mcp_presets_api.py,sha256=MQhJ6SkRBM7Al12sR0fP0hrM4ZU6S0EFGY5LJ6fCO_8,47798
164
+ nanobot/webui/mcp_presets_runtime.py,sha256=R4SwDq0SMicOk30edtZp3vtgo7GrUWx2yddzpmSTbK0,188
165
+ nanobot/webui/media_api.py,sha256=eUi6ew8wT2q8JzGVJdj47Nfplj0K1-Ml_ZbtwzTPCoo,9519
166
+ nanobot/webui/media_gateway.py,sha256=Rb_kJBnOGkCs79hzHA9wO60OtIw5CdXXMEc3bqjurmk,2820
167
+ nanobot/webui/settings_api.py,sha256=dEo4U-Z0XfD4ROfS7tzHHMCpxWCFd1aOiO7y7sA9u9c,48437
168
+ nanobot/webui/settings_routes.py,sha256=rDrXGa4QTgnEJEo1bUL3ix4GxhgtQQa9w9j1dHn7Q5k,14342
169
+ nanobot/webui/sidebar_state.py,sha256=9GjDtZC3YWN11PsAlDdVJTq0AQBwUTFwQGkxN3sfcMM,6575
170
+ nanobot/webui/thread_disk.py,sha256=wl9-bA1Xhn83Mvgwt-t5pKW1d6JM0efQiUFwsua2yME,1011
171
+ nanobot/webui/transcript.py,sha256=sawcsZARCqMHaYOFicB1orQJhxAXKYCQOWMNtd_1e5s,35394
172
+ nanobot/webui/websocket_logging.py,sha256=at7j2fe_-5nox-UiUuv4DK3Zm0KIIT_QPUtic1k3_c8,1506
173
+ nanobot/webui/workspaces.py,sha256=F4E85p7-Mn_7UDUTfNp_nGWJRREjXMRdKsMUnr2PCUU,9755
174
+ nanobot/webui/ws_http.py,sha256=VYchKtfKfVEB2EIrI0uhRVFk-PO_pJPODugmMj1IlHY,19995
175
+ nano_sd-0.2.1.dist-info/METADATA,sha256=06lFcb68vIGj4pqmUwsOLiLLJFA2HHL8Y1sPDUe1R6c,27227
176
+ nano_sd-0.2.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
177
+ nano_sd-0.2.1.dist-info/entry_points.txt,sha256=vEfmi8029KzRcE-1t-lP0Si_jTbPsta4ApZNyHflj1w,52
178
+ nano_sd-0.2.1.dist-info/licenses/LICENSE,sha256=f4qg2KXjSvsGXfKPrKEiBhTc9uVeVHOEzzkRg0aa1CU,1122
179
+ nano_sd-0.2.1.dist-info/licenses/THIRD_PARTY_NOTICES.md,sha256=NBjk0hFJFNp134LTUw3N3X9WgNQyXYEePr09N_yXYjU,6424
180
+ nano_sd-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ nanosd = nanobot.cli.commands:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-present Xubin Ren and the nanobot contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.