Undefined-bot 3.6.3__tar.gz → 3.6.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.
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/ARCHITECTURE.md +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/CHANGELOG.md +19 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/PKG-INFO +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/config.toml.example +130 -11
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/pyproject.toml +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/__init__.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/client/ask_loop.py +9 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/client/setup.py +31 -9
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/requester.py +205 -34
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/model_selector.py +2 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/multimodal/analyzer.py +13 -3
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/builder.py +23 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/system_context.py +28 -2
- undefined_bot-3.6.5/src/Undefined/ai/prompts/system_info.py +335 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/retrieval.py +35 -20
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/_probes.py +13 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/system.py +18 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/tools.py +12 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/client.py +2 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/downloader.py +3 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/registry.py +14 -3
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/api_client.py +5 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/danmaku.py +6 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/parser.py +9 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/__init__.py +2 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/build_config.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/coercers.py +5 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/config_class.py +14 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/domain_parsers.py +37 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/env_registry.py +32 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/domains.py +4 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/finalize.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/history_skills.py +4 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/integrations.py +16 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/knowledge.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/models.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/network.py +47 -3
- undefined_bot-3.6.5/src/Undefined/config/model_parsers.py +43 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/models.py +30 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/agent.py +4 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/chat.py +4 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/embedding.py +15 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/grok.py +4 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/historian.py +8 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/image.py +21 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/naga.py +6 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/pool.py +1 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/security.py +8 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/summary.py +8 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/vision.py +6 -0
- undefined_bot-3.6.5/src/Undefined/config/search.py +53 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/github/client.py +2 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/github/sender.py +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/README.md +3 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/handler.py +4 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/handler.py +15 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/handler.py +6 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/handler.py +6 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/runner/context.py +53 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/runner/tools.py +9 -5
- undefined_bot-3.6.5/src/Undefined/skills/agents/web_agent/README.md +24 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/config.json +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/prompt.md +3 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/handler.py +7 -5
- undefined_bot-3.6.5/src/Undefined/skills/agents/web_agent/tools/firecrawl_search/config.json +21 -0
- undefined_bot-3.6.5/src/Undefined/skills/agents/web_agent/tools/firecrawl_search/handler.py +143 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/grok_search/config.json +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/web_search/config.json +1 -1
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/naga/handler.py +21 -2
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/http_client.py +13 -1
- undefined_bot-3.6.5/src/Undefined/skills/http_config.py +149 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_url_file/handler.py +5 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_latex/handler.py +6 -8
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/http_download.py +12 -2
- undefined_bot-3.6.3/src/Undefined/config/model_parsers.py +0 -1469
- undefined_bot-3.6.3/src/Undefined/skills/agents/web_agent/README.md +0 -21
- undefined_bot-3.6.3/src/Undefined/skills/http_config.py +0 -66
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/.gitignore +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/LICENSE +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/config/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/config/mcp.json.example +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/img/xlwy.jpg +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/IMPORTANT/each.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/agent_self_intro.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/analyze_multimodal.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/describe_image.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/describe_meme_image.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/generate_title.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/historian_profile_merge.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/historian_rewrite.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/image_gen_moderation.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/injection_detector.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/injection_response_agent.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/judge_meme_image.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/merge_message_summaries.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/merge_summaries.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/message_summary.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/naga_message_moderation.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/stats_analysis.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/summarize.txt +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/undefined.xml +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/res/prompts/undefined_nagaagent.xml +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/__main__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/client/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/client/queue.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/crawl4ai_support.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/http.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/sanitize.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/streaming.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/thinking.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/llm/types.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/multimodal/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/multimodal/constants.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/multimodal/detection.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/multimodal/parsing.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/parsing.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/cognitive.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/constants.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/prompts/current_input.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/queue_budget.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/summaries.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/tokens.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/tooling.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/transports/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/ai/transports/openai_transport.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/_context.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/_helpers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/_naga_state.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/_openapi.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/app.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/naga_store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/chat.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/cognitive.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/commands.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/health.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/memes.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/memory.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/naga/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/naga/auth.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/naga/bind.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/naga/send.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/naga/unbind.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/routes/schedules.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/api/webchat_store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/parser.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/arxiv/sender.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/forward_snapshot.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/render.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/attachments/segments.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/download_core.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/downloader.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/errors.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/sender.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/wbi.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/bilibili/wbi_request.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/changelog.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/chroma_scheduler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/historian/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/historian/helpers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/historian/tools.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/historian/worker.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/job_queue.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/profile_storage.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/service/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/service/helpers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/service/service.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/vector_store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/cognitive/vector_store_compat.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/admin.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/hot_reload.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/access.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/core.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/load_sections/logging_tools.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/loader.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/manager.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/parsers/helpers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/resolvers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/toml_io.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/config/webui_settings.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/context.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/context_resource_registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/end_summary_storage.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/faq.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/github/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/github/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/github/parser.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/handlers/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/handlers/auto_extract.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/handlers/message_flow.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/handlers/poke.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/handlers/repeat.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/injection_response_agent.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/chunker.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/embedder.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/manager.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/reranker.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/runtime.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/knowledge/store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/main.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/mcp/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/mcp/registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/_image_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/ingest.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/search.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/service.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/vector_store.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memes/worker.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/memory.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/onebot/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/onebot/client.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/onebot/message.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/py.typed +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/rate_limit.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/render.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/scheduled_task_storage.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/command.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/commands/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/commands/bugfix.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/commands/context.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/commands/registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/commands/stats.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/background.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/batching.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/group.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/message_ids.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/coordinator/private.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/message_batcher/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/message_batcher/scheduler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/message_batcher/state.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/message_summary_fetch.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/model_pool.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/queue_manager.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/services/security.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/agent_tool_registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/docker_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/mcp.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/end/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/end/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/read/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/read/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/write/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/code_delivery_agent/tools/write/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/describe_pdf_page/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/describe_pdf_page/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/baiduhot/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/baiduhot/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/base64/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/base64/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/douyinhot/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/douyinhot/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/gold_price/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/gold_price/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/hash/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/hash/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/history/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/history/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/net_check/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/net_check/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/speed/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/speed/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/tcping/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/tcping/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/weather_query/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/weather_query/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/weibohot/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/weibohot/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/whois/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/info_agent/tools/whois/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/intro_generator.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/intro_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/mcp.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/runner/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/runner/loop.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/runner/webchat_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/prompt.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/_shared.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/list_directory/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/list_directory/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/read_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/read_file/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/search_file_content/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/undefined_self_code_agent/tools/search_file_content/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/intro.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/mcp.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/grok_search/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/agents/web_agent/tools/web_search/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/anthropic_skills/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/anthropic_skills/loader.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/admin/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/admin/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/admin/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/bugfix/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/bugfix/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/bugfix/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/changelog/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/changelog/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/changelog/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/copyright/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/copyright/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/copyright/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/faq/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/faq/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/faq/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/feedback/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/feedback/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/feedback/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/help/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/help/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/help/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/naga/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/naga/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/naga/policy.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/profile/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/profile/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/profile/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/stats/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/stats/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/stats/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/summary/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/summary/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/version/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/commands/version/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/arxiv/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/arxiv/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/bilibili/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/bilibili/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/context.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/github/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/github/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/models.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/pipelines/registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/registry.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/arxiv_paper/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/arxiv_paper/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/arxiv_paper/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/arxiv_paper/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/bilibili_video/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/bilibili_video/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/bilibili_video/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/bilibili_video/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/calculator/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/calculator/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/calculator/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/changelog_query/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/changelog_query/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/changelog_query/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/end/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/end/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/end/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/fetch_image_uid/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/fetch_image_uid/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_current_time/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_current_time/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_current_time/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_current_time/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_picture/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_picture/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_picture/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_user_info/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_user_info/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/get_user_info/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_list/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_list/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_semantic_search/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_semantic_search/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_text_search/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/knowledge_text_search/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/python_interpreter/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/python_interpreter/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/python_interpreter/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/qq_like/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/qq_like/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/qq_like/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/task_progress/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/tools/task_progress/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/get_profile/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/get_profile/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/search_events/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/search_events/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/search_profiles/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/cognitive/search_profiles/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/contacts/query_friends/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/contacts/query_friends/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/contacts/query_groups/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/contacts/query_groups/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/find_member/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/find_member/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_avatar/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_avatar/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_files/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_files/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_honor_info/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_honor_info/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_info/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_info/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_list/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_list/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_title/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group/get_member_title/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/activity_trend/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/activity_trend/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/filter_members/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/filter_members/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/join_statistics/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/join_statistics/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/level_distribution/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/level_distribution/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_activity/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_activity/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_messages/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_messages/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_structure/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/member_structure/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/message_mix/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/message_mix/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/rank_members/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/group_analysis/rank_members/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/mcp/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/mcp/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memes/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memes/search_memes/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memes/search_memes/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/add/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/add/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/delete/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/delete/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/list/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/list/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/update/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/memory/update/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/context_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_forward_msg/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_forward_msg/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_messages_by_time/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_messages_by_time/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_recent_messages/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/get_recent_messages/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/list_emojis/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/list_emojis/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/react_message_emoji/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/react_message_emoji/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_group_sign/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_group_sign/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_message/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_message/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_poke/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_poke/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_private_message/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_private_message/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_text_file/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_text_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_text_file/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_url_file/callable.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/messages/send_url_file/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/get/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/get/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/list/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/list/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/stats/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/notices/stats/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_html/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_html/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_latex/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_markdown/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/render/render_markdown/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/README.md +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/config.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/handler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/token_usage_storage.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/cache.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/coerce.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/common.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/cors.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/fake_at.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/file_lock.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/group_metrics.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/history.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/io.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/logging.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/member_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/message_targets.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/message_turn.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/message_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/paths.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/qq_emoji.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/queue_intervals.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/recent_messages.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/render_cache.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/request_params.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/resources.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/scheduler.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/self_update.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/sender.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/sender_helpers.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/time_utils.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/tool_calls.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/utils/xml.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/__main__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/app.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/core.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_auth.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_bot.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_config.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_index.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_logs.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_memes.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_runtime.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_shared.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/routes/_system.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/.stylelintrc.json +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/app.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/base.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/components.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/highlight-github.min.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/landing.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/responsive.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/style.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/css/variables.css +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/favicon.svg +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/api.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/auth.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/bot.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/config-form.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/i18n.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/log-view.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/logs.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/main.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/memes.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/runtime.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/schedules.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/state.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/ui.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/vendor/highlight.min.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/vendor/highlightjs.LICENSE +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/static/js/vendor/marked.min.js +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/templates/index.html +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/utils/__init__.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/utils/comment.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/utils/config_io.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/utils/config_sync.py +0 -0
- {undefined_bot-3.6.3 → undefined_bot-3.6.5}/src/Undefined/webui/utils/toml_render.py +0 -0
|
@@ -114,7 +114,7 @@ graph TB
|
|
|
114
114
|
|
|
115
115
|
subgraph IntelligentAgents["智能体 Agents (skills/agents/, 7个)"]
|
|
116
116
|
A_Info["info_agent<br/>信息查询助手<br/>(18个工具)<br/>• weather_query<br/>• *hot 热搜<br/>• bilibili_*<br/>• arxiv_search<br/>• whois"]
|
|
117
|
-
A_Web["web_agent<br/>网络搜索助手<br/>(
|
|
117
|
+
A_Web["web_agent<br/>网络搜索助手<br/>(4个工具 + MCP)<br/>• grok_search<br/>• firecrawl_search<br/>• web_search<br/>• crawl_webpage<br/>• Playwright MCP"]
|
|
118
118
|
A_File["file_analysis_agent<br/>文件分析助手<br/>• extract_* (PDF/Word/Excel/PPT)<br/>• describe_pdf_page<br/>• analyze_code<br/>• analyze_multimodal"]
|
|
119
119
|
A_Naga["naga_code_analysis_agent<br/>NagaAgent 代码分析<br/>(7个工具)<br/>• read_file / glob<br/>• search_file_content"]
|
|
120
120
|
A_Self["undefined_self_code_agent<br/>Undefined 自身代码查阅<br/>(4个工具)<br/>• read_file / list_directory<br/>• glob / search_file_content"]
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## v3.6.5 Firecrawl 搜索、代理作用域与热更新连接修复
|
|
2
|
+
|
|
3
|
+
本版本聚焦联网能力与出站配置治理:`web_agent` 新增 Firecrawl 搜索提供商和搜索优先级控制,代理配置从全局开关收敛为模型与功能段独立启用,并修复配置热更新时旧模型连接可能被提前关闭的问题。
|
|
4
|
+
|
|
5
|
+
- 新增 Firecrawl 搜索。`web_agent` 可按 `[search].priority` 在 Grok、Firecrawl 与 SearXNG 间排序;未启用的搜索工具会从工具 schema 隐藏,Firecrawl 支持 API Key、base URL 与 keyless 模式。
|
|
6
|
+
- 收敛代理配置。`[proxy]` 仅保存 `http_proxy` / `https_proxy`,是否走代理改由模型、搜索、附件、渲染、消息、Bilibili、arXiv、GitHub、Naga 和 API callback 等作用域的 `use_proxy` 独立控制。
|
|
7
|
+
- 修复模型热更新连接生命周期。清理模型客户端缓存时会延迟关闭仍在使用的 HTTP client,避免流式、检索或并发请求在热更新期间被提前断开。
|
|
8
|
+
- 同步配置解析、文档与测试覆盖。拆分模型配置 parser,补充 Firecrawl 开关兼容、代理环境变量映射、作用域代理与 LLM 代理回归测试。
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## v3.6.4 可选系统信息注入
|
|
13
|
+
|
|
14
|
+
本版本新增了默认关闭的系统信息 Prompt 注入能力。
|
|
15
|
+
|
|
16
|
+
- 新增 `[prompt.system_info]`:可按 OS、Runtime、主机名、CPU、内存、Swap、磁盘、网络、进程和 uptime 控制展示,采集失败时跳过单项,不影响 Prompt 构建。
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
## v3.6.3 合并转发快照、附件 UID 分析与 Release 下载说明
|
|
2
21
|
|
|
3
22
|
本版本聚焦合并转发在协议端不可二次读取时的可用性:收到消息时先把可访问的转发树按会话保存为本地快照,后续工具读取优先复用快照,避免内层转发过期或回源失败导致 AI 看不到内容。同时补齐文件分析 Agent 对内部附件 UID 的直接解析能力,并澄清 Release 产物的下载选择。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Undefined-bot
|
|
3
|
-
Version: 3.6.
|
|
3
|
+
Version: 3.6.5
|
|
4
4
|
Summary: QQ bot platform with cognitive memory architecture and multi-agent Skills, via OneBot V11.
|
|
5
5
|
Project-URL: Repository, https://github.com/69gg/Undefined
|
|
6
6
|
Project-URL: Issues, https://github.com/69gg/Undefined/issues
|
|
@@ -77,6 +77,9 @@ token = ""
|
|
|
77
77
|
# zh: 对话模型配置(主模型,处理每一条消息)。
|
|
78
78
|
# en: Chat model config (the main model, processing each message).
|
|
79
79
|
[models.chat]
|
|
80
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭;模型池条目需在 entry 内单独配置。
|
|
81
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default; pool entries configure this per entry.
|
|
82
|
+
use_proxy = false
|
|
80
83
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
81
84
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
82
85
|
api_url = ""
|
|
@@ -152,13 +155,16 @@ enabled = false
|
|
|
152
155
|
# zh: 分配策略:default(用户指定)/ round_robin(轮询)/ random(随机)。
|
|
153
156
|
# en: Strategy: default (user-specified) / round_robin / random.
|
|
154
157
|
strategy = "default"
|
|
155
|
-
# zh: 模型池列表(每项需填 model_name、api_url、api_key
|
|
156
|
-
# en: Model pool entries (model_name, api_url, api_key required;
|
|
158
|
+
# zh: 模型池列表(每项需填 model_name、api_url、api_key;可选 use_proxy,默认 false;其余字段可选,缺省继承主模型)。
|
|
159
|
+
# en: Model pool entries (model_name, api_url, api_key required; optional use_proxy defaults to false; other fields inherit from primary).
|
|
157
160
|
models = []
|
|
158
161
|
|
|
159
162
|
# zh: 视觉模型配置(用于图片描述和 OCR)。
|
|
160
163
|
# en: Vision model config (image description and OCR).
|
|
161
164
|
[models.vision]
|
|
165
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭。
|
|
166
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default.
|
|
167
|
+
use_proxy = false
|
|
162
168
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
163
169
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
164
170
|
api_url = ""
|
|
@@ -231,6 +237,9 @@ stream_enabled = false
|
|
|
231
237
|
# zh: 是否启用安全模型检测与注入响应(推荐开启)。
|
|
232
238
|
# en: Enable security-model detection and injection response (recommended).
|
|
233
239
|
enabled = true
|
|
240
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭。
|
|
241
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default.
|
|
242
|
+
use_proxy = false
|
|
234
243
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
235
244
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
236
245
|
api_url = ""
|
|
@@ -302,6 +311,9 @@ stream_enabled = false
|
|
|
302
311
|
# en: Naga outbound moderation model config (used only before Naga sends messages through the Runtime API).
|
|
303
312
|
# en: Optional; falls back to [models.security] when omitted.
|
|
304
313
|
[models.naga]
|
|
314
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭;即使回退 [models.security] endpoint,也使用本开关。
|
|
315
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default; this switch is used even when falling back to [models.security].
|
|
316
|
+
use_proxy = false
|
|
305
317
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
306
318
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
307
319
|
api_url = ""
|
|
@@ -368,6 +380,9 @@ stream_enabled = false
|
|
|
368
380
|
# zh: Agent 模型配置(用于执行 agents)。
|
|
369
381
|
# en: Agent model config (used to run agents).
|
|
370
382
|
[models.agent]
|
|
383
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭;模型池条目需在 entry 内单独配置。
|
|
384
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default; pool entries configure this per entry.
|
|
385
|
+
use_proxy = false
|
|
371
386
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
372
387
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
373
388
|
api_url = ""
|
|
@@ -443,13 +458,16 @@ enabled = false
|
|
|
443
458
|
# zh: 分配策略:default(用户指定)/ round_robin(轮询)/ random(随机)。
|
|
444
459
|
# en: Strategy: default (user-specified) / round_robin / random.
|
|
445
460
|
strategy = "default"
|
|
446
|
-
# zh: Agent 模型池列表(每项需填 model_name、api_url、api_key
|
|
447
|
-
# en: Agent model pool entries (model_name, api_url, api_key required;
|
|
461
|
+
# zh: Agent 模型池列表(每项需填 model_name、api_url、api_key;可选 use_proxy,默认 false;其余字段可选,缺省继承主模型)。
|
|
462
|
+
# en: Agent model pool entries (model_name, api_url, api_key required; optional use_proxy defaults to false; other fields inherit from primary).
|
|
448
463
|
models = []
|
|
449
464
|
|
|
450
465
|
# zh: 史官模型配置(认知记忆后台改写用,未配置时回退到 agent 模型)。
|
|
451
466
|
# en: Historian model config (for cognitive memory rewriting, falls back to agent model if unset).
|
|
452
467
|
[models.historian]
|
|
468
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭;即使回退 [models.agent] endpoint,也使用本开关。
|
|
469
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default; this switch is used even when falling back to [models.agent].
|
|
470
|
+
use_proxy = false
|
|
453
471
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
454
472
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
455
473
|
api_url = ""
|
|
@@ -519,6 +537,9 @@ stream_enabled = false
|
|
|
519
537
|
# zh: 消息总结模型配置(/summary /sum 与 SummaryService 专用;未配置时回退到 agent 模型;主 AI 调用 summary_agent 不使用此段配置)。
|
|
520
538
|
# en: Message-summary model config (used by /summary, /sum, and SummaryService; falls back to the agent model when unset; summary_agent invoked by the main AI does not use this section).
|
|
521
539
|
[models.summary]
|
|
540
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭;即使回退 [models.agent] endpoint,也使用本开关。
|
|
541
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default; this switch is used even when falling back to [models.agent].
|
|
542
|
+
use_proxy = false
|
|
522
543
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
523
544
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
524
545
|
api_url = ""
|
|
@@ -588,6 +609,9 @@ stream_enabled = false
|
|
|
588
609
|
# zh: Grok 搜索模型配置(仅供 web_agent 内的 grok_search 使用;固定走 chat.completions,不支持 tool call 兼容字段)。
|
|
589
610
|
# en: Grok search model config (used only by grok_search inside web_agent; always uses chat completions and does not expose tool-call compatibility fields).
|
|
590
611
|
[models.grok]
|
|
612
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭。
|
|
613
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default.
|
|
614
|
+
use_proxy = false
|
|
591
615
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.example.com/v1。
|
|
592
616
|
# en: OpenAI-compatible base URL, e.g. https://api.example.com/v1.
|
|
593
617
|
api_url = ""
|
|
@@ -639,6 +663,9 @@ stream_enabled = false
|
|
|
639
663
|
# zh: 嵌入模型配置(知识库语义检索使用)。
|
|
640
664
|
# en: Embedding model config (used by knowledge semantic retrieval).
|
|
641
665
|
[models.embedding]
|
|
666
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭。
|
|
667
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default.
|
|
668
|
+
use_proxy = false
|
|
642
669
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1。
|
|
643
670
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1.
|
|
644
671
|
api_url = ""
|
|
@@ -672,6 +699,9 @@ document_instruction = ""
|
|
|
672
699
|
# zh: 重排模型配置(知识库二阶段检索使用)。
|
|
673
700
|
# en: Rerank model config (used in second-stage knowledge retrieval).
|
|
674
701
|
[models.rerank]
|
|
702
|
+
# zh: 是否让该模型请求使用 [proxy] 代理地址。默认关闭。
|
|
703
|
+
# en: Whether this model uses proxy addresses from [proxy]. Disabled by default.
|
|
704
|
+
use_proxy = false
|
|
675
705
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1。
|
|
676
706
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1.
|
|
677
707
|
api_url = ""
|
|
@@ -699,6 +729,9 @@ query_instruction = ""
|
|
|
699
729
|
# zh: 生图模型配置(用于 image_gen.provider="models" 时调用 OpenAI 兼容的图片生成接口)。
|
|
700
730
|
# en: Image generation model config (used when image_gen.provider="models" to call OpenAI-compatible image generation API).
|
|
701
731
|
[models.image_gen]
|
|
732
|
+
# zh: 是否让该图片生成模型请求使用 [proxy] 代理地址。默认关闭。
|
|
733
|
+
# en: Whether this image-generation model uses proxy addresses from [proxy]. Disabled by default.
|
|
734
|
+
use_proxy = false
|
|
702
735
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(最终请求路径为 /v1/images/generations)。
|
|
703
736
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1 (final request path is /v1/images/generations).
|
|
704
737
|
api_url = ""
|
|
@@ -716,6 +749,9 @@ model_name = ""
|
|
|
716
749
|
# zh: 参考图生图模型配置(用于 ai_draw_one 传入 reference_image_uids 时调用 OpenAI 兼容的图片编辑接口)。
|
|
717
750
|
# en: Reference-image generation model config (used when ai_draw_one receives reference_image_uids and calls the OpenAI-compatible image editing API).
|
|
718
751
|
[models.image_edit]
|
|
752
|
+
# zh: 是否让该图片编辑模型请求使用 [proxy] 代理地址。默认关闭。
|
|
753
|
+
# en: Whether this image-edit model uses proxy addresses from [proxy]. Disabled by default.
|
|
754
|
+
use_proxy = false
|
|
719
755
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(最终请求路径为 /v1/images/edits)。
|
|
720
756
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1 (final request path is /v1/images/edits).
|
|
721
757
|
api_url = ""
|
|
@@ -910,6 +946,9 @@ group_analysis_limit = 500
|
|
|
910
946
|
# zh: 附件缓存配置。
|
|
911
947
|
# en: Attachment cache settings.
|
|
912
948
|
[attachments]
|
|
949
|
+
# zh: 是否让远程附件下载/回源使用 [proxy] 代理地址。默认关闭。
|
|
950
|
+
# en: Whether remote attachment downloads/backfills use proxy addresses from [proxy]. Disabled by default.
|
|
951
|
+
use_proxy = false
|
|
913
952
|
# zh: 远程附件自动下载并缓存的最大大小(MB)。超过上限或设为 0 时只保留 URL 引用,不下载文件内容。
|
|
914
953
|
# en: Max remote attachment size (MB) to download into cache. Above the limit, or 0, keeps only a URL reference.
|
|
915
954
|
remote_download_max_size_mb = 25
|
|
@@ -959,24 +998,80 @@ prefetch_tools = ["get_current_time"]
|
|
|
959
998
|
# zh: 隐藏已预取的工具声明。
|
|
960
999
|
# en: Hide prefetched tools from the model's tool list.
|
|
961
1000
|
prefetch_tools_hide = true
|
|
1001
|
+
|
|
1002
|
+
# zh: Prompt 系统信息注入。总开关默认关闭;开启后各子项默认展示,可逐项关闭。
|
|
1003
|
+
# en: Prompt system information injection. The master switch is disabled by default; enabled sub-items are shown by default and can be disabled individually.
|
|
1004
|
+
[prompt.system_info]
|
|
1005
|
+
# zh: 是否把当前运行主机的系统信息注入提示词。默认关闭,避免升级后自动暴露本机信息给模型。
|
|
1006
|
+
# en: Inject current host system information into prompts. Disabled by default to avoid exposing host data automatically after upgrades.
|
|
1007
|
+
enabled = false
|
|
1008
|
+
# zh: 展示操作系统、版本、release 和架构。
|
|
1009
|
+
# en: Show operating system, version, release, and architecture.
|
|
1010
|
+
show_os = true
|
|
1011
|
+
# zh: 展示 Python 与 Undefined 版本。
|
|
1012
|
+
# en: Show Python and Undefined versions.
|
|
1013
|
+
show_runtime = true
|
|
1014
|
+
# zh: 展示主机名。
|
|
1015
|
+
# en: Show hostname.
|
|
1016
|
+
show_host = true
|
|
1017
|
+
# zh: 展示 CPU 型号与物理/逻辑核心数。
|
|
1018
|
+
# en: Show CPU model and physical/logical core counts.
|
|
1019
|
+
show_cpu = true
|
|
1020
|
+
# zh: 展示当前 CPU 总使用率。
|
|
1021
|
+
# en: Show current total CPU usage.
|
|
1022
|
+
show_cpu_usage = true
|
|
1023
|
+
# zh: 展示内存总量、已用量与占用率。
|
|
1024
|
+
# en: Show memory total, used amount, and usage percentage.
|
|
1025
|
+
show_memory = true
|
|
1026
|
+
# zh: 展示 Swap 总量、已用量与占用率。
|
|
1027
|
+
# en: Show swap total, used amount, and usage percentage.
|
|
1028
|
+
show_swap = true
|
|
1029
|
+
# zh: 展示可见磁盘分区、文件系统、容量与占用率。
|
|
1030
|
+
# en: Show visible disk partitions, filesystem, capacity, and usage percentage.
|
|
1031
|
+
show_disks = true
|
|
1032
|
+
# zh: 展示非回环网卡地址与网络收发累计。涉及 IP 信息,公网或共享部署可关闭。
|
|
1033
|
+
# en: Show non-loopback network addresses and cumulative network I/O. Disable this on public or shared deployments if IP exposure is undesirable.
|
|
1034
|
+
show_network = true
|
|
1035
|
+
# zh: 展示 Bot 进程 PID、启动时间、运行时长、RSS 与进程 CPU 占用。
|
|
1036
|
+
# en: Show bot process PID, start time, uptime, RSS, and process CPU usage.
|
|
1037
|
+
show_process = true
|
|
1038
|
+
# zh: 展示系统启动时间与系统运行时长。
|
|
1039
|
+
# en: Show system boot time and uptime.
|
|
1040
|
+
show_uptime = true
|
|
962
1041
|
# zh: 搜索服务配置。
|
|
963
1042
|
# en: Search service config.
|
|
964
1043
|
[search]
|
|
1044
|
+
# zh: 是否让联网搜索和通用信息类 HTTP 工具使用 [proxy] 代理地址。默认关闭。
|
|
1045
|
+
# en: Whether search and generic information HTTP tools use proxy addresses from [proxy]. Disabled by default.
|
|
1046
|
+
use_proxy = false
|
|
1047
|
+
# zh: web_agent 搜索工具优先级。关闭的工具会从可用工具中隐藏;开启后模型按该顺序优先考虑,但不会被代码硬性路由。
|
|
1048
|
+
# en: Search tool priority for web_agent. Disabled tools are hidden; enabled tools are preferred in this order by prompt guidance, not hard routing.
|
|
1049
|
+
priority = ["grok_search", "firecrawl_search", "web_search"]
|
|
965
1050
|
# zh: SearxNG 搜索服务地址,例如 http://127.0.0.1:8849。
|
|
966
1051
|
# en: SearxNG service URL, e.g. http://127.0.0.1:8849.
|
|
967
1052
|
searxng_url = ""
|
|
968
|
-
# zh: 是否在 web_agent 中启用 grok_search
|
|
969
|
-
# en: Enable grok_search in web_agent. When
|
|
1053
|
+
# zh: 是否在 web_agent 中启用 grok_search。关闭时该工具会从 web_agent 工具列表中隐藏。
|
|
1054
|
+
# en: Enable grok_search in web_agent. When disabled, this tool is hidden from the web_agent tool list.
|
|
970
1055
|
grok_search_enabled = false
|
|
1056
|
+
# zh: 是否在 web_agent 中启用 firecrawl_search。默认关闭;关闭时该工具会隐藏。
|
|
1057
|
+
# en: Enable firecrawl_search in web_agent. Disabled by default; when disabled, this tool is hidden.
|
|
1058
|
+
firecrawl_search_enabled = false
|
|
1059
|
+
|
|
1060
|
+
# zh: Firecrawl 搜索服务配置。
|
|
1061
|
+
# en: Firecrawl search service config.
|
|
1062
|
+
[search.firecrawl]
|
|
1063
|
+
# zh: Firecrawl API Key。为空时使用 Firecrawl keyless 搜索;填写后会发送 Authorization: Bearer。
|
|
1064
|
+
# en: Firecrawl API key. Leave empty for Firecrawl keyless search; when set, Authorization: Bearer is sent.
|
|
1065
|
+
api_key = ""
|
|
1066
|
+
# zh: Firecrawl API 基础地址。
|
|
1067
|
+
# en: Firecrawl API base URL.
|
|
1068
|
+
base_url = "https://api.firecrawl.dev"
|
|
971
1069
|
|
|
972
1070
|
# zh: 代理设置(可选)。
|
|
973
1071
|
# en: Proxy settings (optional).
|
|
974
1072
|
[proxy]
|
|
975
|
-
# zh:
|
|
976
|
-
# en:
|
|
977
|
-
# zh: 作用于 GitHub/arXiv 自动提取等走统一 HTTP 客户端的联网请求;关闭后也不会再读取代理环境变量。
|
|
978
|
-
# en: Applies to GitHub/arXiv auto extraction and other shared HTTP-client requests; when disabled, proxy env vars are ignored.
|
|
979
|
-
use_proxy = true
|
|
1073
|
+
# zh: 这里只配置代理地址;是否使用代理由各功能段的 use_proxy 单独控制,默认均关闭。
|
|
1074
|
+
# en: This section only defines proxy addresses; each feature's use_proxy controls usage independently, disabled by default.
|
|
980
1075
|
# zh: 例如 http://127.0.0.1:7890(也可使用环境变量 "HTTP_PROXY")。
|
|
981
1076
|
# en: e.g. http://127.0.0.1:7890 (or use the "HTTP_PROXY" environment variable).
|
|
982
1077
|
http_proxy = ""
|
|
@@ -997,6 +1092,9 @@ request_retries = 0
|
|
|
997
1092
|
# zh: HTML/Markdown 图片渲染配置。
|
|
998
1093
|
# en: HTML/Markdown image rendering settings.
|
|
999
1094
|
[render]
|
|
1095
|
+
# zh: 是否让 crawl4ai、HTML/Markdown/LaTeX 渲染中的远程资源使用 [proxy] 代理地址。默认关闭。
|
|
1096
|
+
# en: Whether crawl4ai and remote resources in HTML/Markdown/LaTeX rendering use proxy addresses from [proxy]. Disabled by default.
|
|
1097
|
+
use_proxy = false
|
|
1000
1098
|
# zh: 渲染浏览器最大同时开启数量。0 表示自动:Linux 默认 1,其它平台默认 2。
|
|
1001
1099
|
# en: Max concurrent render browser pages. 0 = auto: Linux defaults to 1, other platforms default to 2.
|
|
1002
1100
|
browser_max_concurrency = 0
|
|
@@ -1030,6 +1128,9 @@ xingzhige_base_url = "https://api.xingzhige.com"
|
|
|
1030
1128
|
# zh: 生图工具配置。
|
|
1031
1129
|
# en: Image generation tool config.
|
|
1032
1130
|
[image_gen]
|
|
1131
|
+
# zh: 是否让生图工具自身的第三方 HTTP 请求和图片下载使用 [proxy] 代理地址。默认关闭;模型接口另看 [models.image_gen]/[models.image_edit]。
|
|
1132
|
+
# en: Whether the image tool's third-party HTTP calls and image downloads use proxy addresses from [proxy]. Disabled by default; model APIs use [models.image_gen]/[models.image_edit].
|
|
1133
|
+
use_proxy = false
|
|
1033
1134
|
# zh: 生图 provider:"xingzhige"(免费星之阁 API)或 "models"(使用 [models.image_gen] 配置的 OpenAI 兼容接口)。
|
|
1034
1135
|
# en: Image generation provider: "xingzhige" (free Xingzhige API) or "models" (OpenAI-compatible via [models.image_gen]).
|
|
1035
1136
|
provider = "xingzhige"
|
|
@@ -1082,6 +1183,9 @@ config_path = "config/mcp.json"
|
|
|
1082
1183
|
# zh: 消息工具配置。
|
|
1083
1184
|
# en: Message tool settings.
|
|
1084
1185
|
[messages]
|
|
1186
|
+
# zh: 是否让消息工具的 URL 文件下载使用 [proxy] 代理地址。默认关闭。
|
|
1187
|
+
# en: Whether message-tool URL file downloads use proxy addresses from [proxy]. Disabled by default.
|
|
1188
|
+
use_proxy = false
|
|
1085
1189
|
# zh: messages.send_text_file 单文件文本发送大小上限(KB)。默认 512KB(0.5MB)。
|
|
1086
1190
|
# en: Size limit for messages.send_text_file single-text-file uploads (KB). Default 512KB (0.5MB).
|
|
1087
1191
|
send_text_file_max_size_kb = 512
|
|
@@ -1092,6 +1196,9 @@ send_url_file_max_size_mb = 100
|
|
|
1092
1196
|
# zh: Bilibili 视频自动提取配置。
|
|
1093
1197
|
# en: Bilibili video auto-extraction settings.
|
|
1094
1198
|
[bilibili]
|
|
1199
|
+
# zh: 是否让 Bilibili API、短链解析、弹幕和视频流请求使用 [proxy] 代理地址。默认关闭。
|
|
1200
|
+
# en: Whether Bilibili API, short-link, danmaku, and video stream requests use proxy addresses from [proxy]. Disabled by default.
|
|
1201
|
+
use_proxy = false
|
|
1095
1202
|
# zh: 是否启用自动提取(检测到B站视频链接/BV号时自动下载并发送)。
|
|
1096
1203
|
# en: Enable auto-extraction (auto-download and send when Bilibili video links/BV IDs are detected).
|
|
1097
1204
|
auto_extract_enabled = false
|
|
@@ -1129,6 +1236,9 @@ auto_extract_private_ids = []
|
|
|
1129
1236
|
# zh: arXiv 论文自动提取配置。
|
|
1130
1237
|
# en: arXiv paper auto-extraction settings.
|
|
1131
1238
|
[arxiv]
|
|
1239
|
+
# zh: 是否让 arXiv API 和 PDF 下载使用 [proxy] 代理地址。默认关闭。
|
|
1240
|
+
# en: Whether arXiv API and PDF downloads use proxy addresses from [proxy]. Disabled by default.
|
|
1241
|
+
use_proxy = false
|
|
1132
1242
|
# zh: 是否启用自动提取(检测到 arXiv 链接 / arXiv:ID / 带 arxiv 关键词的新式编号时自动发送论文信息并尽力附带 PDF)。
|
|
1133
1243
|
# en: Enable auto-extraction (auto-send paper info and best-effort PDF when arXiv links / arXiv:ID / keyword-scoped new-style IDs are detected).
|
|
1134
1244
|
auto_extract_enabled = false
|
|
@@ -1154,6 +1264,9 @@ summary_preview_chars = 1000
|
|
|
1154
1264
|
# zh: GitHub 仓库自动提取配置(仅获取 public 仓库信息)。
|
|
1155
1265
|
# en: GitHub repository auto-extraction settings (public repositories only).
|
|
1156
1266
|
[github]
|
|
1267
|
+
# zh: 是否让 GitHub API 和仓库卡片渲染中的远程资源使用 [proxy] 代理地址。默认关闭。
|
|
1268
|
+
# en: Whether GitHub API and remote resources in repo-card rendering use proxy addresses from [proxy]. Disabled by default.
|
|
1269
|
+
use_proxy = false
|
|
1157
1270
|
# zh: 是否启用自动提取(检测到 GitHub 仓库链接或 owner/repo 仓库 ID 时自动发送图片卡片)。
|
|
1158
1271
|
# en: Enable auto-extraction (auto-send an image card when GitHub repository links or owner/repo IDs are detected).
|
|
1159
1272
|
auto_extract_enabled = false
|
|
@@ -1277,6 +1390,9 @@ tool_invoke_timeout = 120
|
|
|
1277
1390
|
# zh: 回调请求超时(秒)。
|
|
1278
1391
|
# en: Callback request timeout in seconds.
|
|
1279
1392
|
tool_invoke_callback_timeout = 10
|
|
1393
|
+
# zh: 是否让工具调用 API 的外部 callback URL 使用 [proxy] 代理地址。默认关闭;不影响 WebUI/Runtime 本机桥接。
|
|
1394
|
+
# en: Whether external callback URLs for the tool invoke API use proxy addresses from [proxy]. Disabled by default; does not affect WebUI/Runtime loopback calls.
|
|
1395
|
+
tool_invoke_callback_use_proxy = false
|
|
1280
1396
|
|
|
1281
1397
|
# zh: 认知记忆系统配置。启用后需配置 [models.embedding],其余参数均有合理默认值。
|
|
1282
1398
|
# en: Cognitive memory system. Requires [models.embedding] when enabled. All other params have sensible defaults.
|
|
@@ -1456,6 +1572,9 @@ rerank_top_k = 20
|
|
|
1456
1572
|
# en: To get NagaAgent answering without external callbacks, only enable nagaagent_mode_enabled.
|
|
1457
1573
|
# en: ⚠️ Advanced feature for NagaAgent integration. Not recommended for regular users.
|
|
1458
1574
|
[naga]
|
|
1575
|
+
# zh: 是否让 Naga 外部网关 HTTP 请求使用 [proxy] 代理地址。默认关闭。
|
|
1576
|
+
# en: Whether Naga external-gateway HTTP requests use proxy addresses from [proxy]. Disabled by default.
|
|
1577
|
+
use_proxy = false
|
|
1459
1578
|
# zh: 是否启用外部网关集成(/naga bind/unbind、远端绑定回调、消息发送、解绑 API)。
|
|
1460
1579
|
# zh: 需同时开启 [features].nagaagent_mode_enabled 才生效。
|
|
1461
1580
|
# en: Enable external gateway integration (/naga bind/unbind, bind callback, message send, unbind API).
|
|
@@ -24,7 +24,7 @@ if TYPE_CHECKING:
|
|
|
24
24
|
from .skills.registry import BaseRegistry as BaseRegistry
|
|
25
25
|
from .skills.tools import ToolRegistry as ToolRegistry
|
|
26
26
|
|
|
27
|
-
__version__ = "3.6.
|
|
27
|
+
__version__: str = "3.6.5"
|
|
28
28
|
|
|
29
29
|
# symbol -> (module_path, attribute_name);首次访问时才 importlib 加载
|
|
30
30
|
_LAZY_IMPORTS: dict[str, tuple[str, str]] = {
|
|
@@ -16,6 +16,7 @@ from Undefined.ai.transports.openai_transport import RESPONSES_OUTPUT_ITEMS_KEY
|
|
|
16
16
|
from Undefined.ai.tooling import END_CO_CALL_REJECT_CONTENT
|
|
17
17
|
from Undefined.context import RequestContext
|
|
18
18
|
from Undefined.render import render_html_to_image, render_markdown_to_html
|
|
19
|
+
from Undefined.skills.http_config import get_request_proxy
|
|
19
20
|
from Undefined.services.message_summary_fetch import fetch_session_messages
|
|
20
21
|
from Undefined.attachments import scope_from_context
|
|
21
22
|
from Undefined.utils.io import write_bytes
|
|
@@ -216,7 +217,14 @@ class ClientAskLoopMixin(ClientQueueMixin):
|
|
|
216
217
|
tool_context.setdefault("history_manager", history_manager)
|
|
217
218
|
tool_context.setdefault("onebot_client", onebot_client)
|
|
218
219
|
tool_context.setdefault("scheduler", scheduler)
|
|
219
|
-
|
|
220
|
+
|
|
221
|
+
async def render_html_to_image_with_proxy(*args: Any, **kwargs: Any) -> Any:
|
|
222
|
+
kwargs.setdefault(
|
|
223
|
+
"proxy", get_request_proxy("https://example.com", "render")
|
|
224
|
+
)
|
|
225
|
+
return await render_html_to_image(*args, **kwargs)
|
|
226
|
+
|
|
227
|
+
tool_context.setdefault("render_html_to_image", render_html_to_image_with_proxy)
|
|
220
228
|
tool_context.setdefault("render_markdown_to_html", render_markdown_to_html)
|
|
221
229
|
tool_context.setdefault("send_image_callback", self._send_image_callback)
|
|
222
230
|
tool_context.setdefault(
|
|
@@ -180,16 +180,19 @@ class ClientSetupMixin:
|
|
|
180
180
|
self._end_summary_storage = end_summary_storage or EndSummaryStorage()
|
|
181
181
|
self._crawl4ai_capabilities = get_crawl4ai_capabilities()
|
|
182
182
|
|
|
183
|
-
self._http_client = httpx.AsyncClient(timeout=480.0)
|
|
183
|
+
self._http_client = httpx.AsyncClient(timeout=480.0, trust_env=False)
|
|
184
184
|
self._token_usage_storage = TokenUsageStorage()
|
|
185
|
-
self._requester = ModelRequester(
|
|
185
|
+
self._requester = ModelRequester(
|
|
186
|
+
None,
|
|
187
|
+
self._token_usage_storage,
|
|
188
|
+
config_getter=self._get_runtime_config,
|
|
189
|
+
)
|
|
186
190
|
self._token_counter = TokenCounter()
|
|
187
191
|
self._knowledge_manager: Any = None
|
|
188
192
|
self._cognitive_service: Any = cognitive_service
|
|
189
193
|
self._meme_service: Any = None
|
|
190
194
|
if self.runtime_config is not None:
|
|
191
195
|
self.attachment_registry = AttachmentRegistry(
|
|
192
|
-
http_client=self._http_client,
|
|
193
196
|
remote_download_max_bytes=_attachment_remote_download_max_bytes(
|
|
194
197
|
self.runtime_config
|
|
195
198
|
),
|
|
@@ -200,9 +203,10 @@ class ClientSetupMixin:
|
|
|
200
203
|
self.runtime_config.attachment_url_reference_max_records
|
|
201
204
|
),
|
|
202
205
|
url_max_length=self.runtime_config.attachment_url_max_length,
|
|
206
|
+
proxy_config=self.runtime_config,
|
|
203
207
|
)
|
|
204
208
|
else:
|
|
205
|
-
self.attachment_registry = AttachmentRegistry(
|
|
209
|
+
self.attachment_registry = AttachmentRegistry()
|
|
206
210
|
|
|
207
211
|
self._send_private_message_callback: Optional[SendPrivateMessageCallback] = None
|
|
208
212
|
self._send_image_callback: Optional[
|
|
@@ -324,7 +328,11 @@ class ClientSetupMixin:
|
|
|
324
328
|
anthropic_skill_registry=self.anthropic_skill_registry,
|
|
325
329
|
cognitive_service=self._cognitive_service,
|
|
326
330
|
)
|
|
327
|
-
self._multimodal = MultimodalAnalyzer(
|
|
331
|
+
self._multimodal = MultimodalAnalyzer(
|
|
332
|
+
self._requester,
|
|
333
|
+
self.vision_config,
|
|
334
|
+
config_getter=self._get_runtime_config,
|
|
335
|
+
)
|
|
328
336
|
self._rebuild_summary_service()
|
|
329
337
|
|
|
330
338
|
async def init_mcp_async() -> None:
|
|
@@ -398,9 +406,14 @@ class ClientSetupMixin:
|
|
|
398
406
|
except Exception as exc:
|
|
399
407
|
logger.warning("[清理] 刷新附件注册表失败: %s", exc)
|
|
400
408
|
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
409
|
+
requester = getattr(self, "_requester", None)
|
|
410
|
+
if requester is not None and hasattr(requester, "aclose"):
|
|
411
|
+
logger.info("[清理] 正在关闭 AIClient 模型 HTTP 客户端...")
|
|
412
|
+
await requester.aclose()
|
|
413
|
+
|
|
414
|
+
http_client = getattr(self, "_http_client", None)
|
|
415
|
+
if http_client is not None:
|
|
416
|
+
await http_client.aclose()
|
|
404
417
|
|
|
405
418
|
logger.info("[清理] AIClient 已关闭")
|
|
406
419
|
|
|
@@ -574,7 +587,13 @@ class ClientSetupMixin:
|
|
|
574
587
|
self.vision_config = vision_config
|
|
575
588
|
self.agent_config = agent_config
|
|
576
589
|
self.runtime_config = runtime_config
|
|
577
|
-
|
|
590
|
+
if hasattr(self._requester, "clear_client_cache"):
|
|
591
|
+
self._requester.clear_client_cache()
|
|
592
|
+
self._multimodal = MultimodalAnalyzer(
|
|
593
|
+
self._requester,
|
|
594
|
+
self.vision_config,
|
|
595
|
+
config_getter=self._get_runtime_config,
|
|
596
|
+
)
|
|
578
597
|
self._rebuild_summary_service()
|
|
579
598
|
self.apply_attachment_config(runtime_config)
|
|
580
599
|
logger.info(
|
|
@@ -587,6 +606,8 @@ class ClientSetupMixin:
|
|
|
587
606
|
def apply_runtime_config(self, runtime_config: Config) -> None:
|
|
588
607
|
"""应用不需要重建模型客户端的运行时配置。"""
|
|
589
608
|
self.runtime_config = runtime_config
|
|
609
|
+
if hasattr(self._requester, "clear_client_cache"):
|
|
610
|
+
self._requester.clear_client_cache()
|
|
590
611
|
self._rebuild_summary_service()
|
|
591
612
|
logger.info("[配置] AI 运行时配置已热更新")
|
|
592
613
|
|
|
@@ -612,6 +633,7 @@ class ClientSetupMixin:
|
|
|
612
633
|
runtime_config.attachment_url_reference_max_records
|
|
613
634
|
),
|
|
614
635
|
url_max_length=runtime_config.attachment_url_max_length,
|
|
636
|
+
proxy_config=runtime_config,
|
|
615
637
|
)
|
|
616
638
|
|
|
617
639
|
def count_tokens(self, text: str) -> int:
|