Undefined-bot 3.4.0__tar.gz → 3.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/ARCHITECTURE.md +2 -3
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/CHANGELOG.md +30 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/PKG-INFO +4 -3
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/README.md +3 -1
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/config.toml.example +128 -22
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/pyproject.toml +1 -2
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/IMPORTANT/each.md +4 -4
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/historian_profile_merge.md +5 -1
- undefined_bot-3.4.2/res/prompts/merge_message_summaries.txt +12 -0
- undefined_bot-3.4.2/res/prompts/message_summary.txt +33 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/undefined.xml +35 -3
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/undefined_nagaagent.xml +34 -3
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/__init__.py +1 -1
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/client.py +146 -11
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/llm.py +118 -7
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/model_selector.py +6 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/prompts.py +0 -2
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/summaries.py +131 -22
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/transports/openai_transport.py +4 -1
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/_probes.py +10 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/attachments.py +254 -27
- undefined_bot-3.4.2/src/Undefined/bilibili/api_client.py +184 -0
- undefined_bot-3.4.2/src/Undefined/bilibili/danmaku.py +264 -0
- undefined_bot-3.4.2/src/Undefined/bilibili/download_core.py +227 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/bilibili/downloader.py +45 -109
- undefined_bot-3.4.2/src/Undefined/bilibili/errors.py +23 -0
- undefined_bot-3.4.2/src/Undefined/bilibili/models.py +66 -0
- undefined_bot-3.4.2/src/Undefined/bilibili/sender.py +412 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/bilibili/wbi.py +93 -14
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/hot_reload.py +8 -1
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/loader.py +84 -4
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/model_parsers.py +136 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/models.py +21 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/resolvers.py +55 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/handlers.py +3 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/onebot.py +9 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/scheduled_task_storage.py +1 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/ai_coordinator.py +1 -0
- undefined_bot-3.4.0/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py → undefined_bot-3.4.2/src/Undefined/services/message_summary_fetch.py +49 -38
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/runner.py +4 -2
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/handler.py +3 -10
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/intro.md +8 -2
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/prompt.md +5 -1
- undefined_bot-3.4.2/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py +38 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/README.md +1 -0
- undefined_bot-3.4.2/src/Undefined/skills/commands/feedback/README.md +25 -0
- undefined_bot-3.4.2/src/Undefined/skills/commands/feedback/config.json +40 -0
- undefined_bot-3.4.2/src/Undefined/skills/commands/feedback/handler.py +451 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/summary/handler.py +24 -33
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/README.md +1 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/README.md +8 -3
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/handler.py +9 -0
- undefined_bot-3.4.2/src/Undefined/skills/toolsets/attachments/get_uid_by_url/config.json +14 -0
- undefined_bot-3.4.2/src/Undefined/skills/toolsets/attachments/get_uid_by_url/handler.py +13 -0
- undefined_bot-3.4.2/src/Undefined/skills/toolsets/attachments/get_url_by_uid/config.json +14 -0
- undefined_bot-3.4.2/src/Undefined/skills/toolsets/attachments/get_url_by_uid/handler.py +13 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_message/handler.py +1 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_private_message/handler.py +1 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/sender.py +85 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/config-form.js +27 -0
- undefined_bot-3.4.0/src/Undefined/bilibili/sender.py +0 -249
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/.gitignore +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/LICENSE +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/config/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/config/mcp.json.example +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/img/xlwy.jpg +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/agent_self_intro.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/analyze_multimodal.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/describe_image.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/describe_meme_image.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/generate_title.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/historian_rewrite.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/image_gen_moderation.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/injection_detector.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/injection_response_agent.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/judge_meme_image.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/merge_summaries.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/naga_message_moderation.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/stats_analysis.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/res/prompts/summarize.txt +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/__main__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/crawl4ai_support.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/http.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/multimodal.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/parsing.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/queue_budget.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/retrieval.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/tokens.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/tooling.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/ai/transports/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/_context.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/_helpers.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/_naga_state.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/_openapi.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/app.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/naga_store.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/chat.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/cognitive.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/health.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/memes.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/memory.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/naga.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/system.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/api/routes/tools.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/client.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/downloader.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/models.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/parser.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/arxiv/sender.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/bilibili/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/bilibili/parser.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/bilibili/wbi_request.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/changelog.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/historian.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/job_queue.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/profile_storage.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/service.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/cognitive/vector_store.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/admin.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/coercers.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/domain_parsers.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/manager.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/config/webui_settings.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/context.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/context_resource_registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/end_summary_storage.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/faq.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/github/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/github/client.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/github/models.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/github/parser.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/github/sender.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/injection_response_agent.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/chunker.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/embedder.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/manager.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/reranker.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/runtime.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/knowledge/store.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/main.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/mcp/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/mcp/registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/models.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/service.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/store.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/vector_store.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memes/worker.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/memory.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/rate_limit.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/render.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/command.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/commands/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/commands/context.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/commands/registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/message_batcher.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/model_pool.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/queue_manager.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/services/security.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/agent_tool_registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/docker_utils.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/mcp.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/end/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/end/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/read/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/read/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/write/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/write/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/baiduhot/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/baiduhot/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/base64/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/base64/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/douyinhot/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/douyinhot/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/gold_price/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/gold_price/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/hash/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/hash/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/history/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/history/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/net_check/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/net_check/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/speed/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/speed/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/tcping/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/tcping/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weather_query/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weather_query/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weibohot/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weibohot/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/whois/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/whois/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/intro_generator.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/intro_utils.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/mcp.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/intro.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/mcp.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/prompt.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/grok_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/grok_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/web_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/web_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/anthropic_skills/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/anthropic_skills/loader.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/policy.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/summary/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/version/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/commands/version/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/http_client.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/http_config.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/arxiv/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/arxiv/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/bilibili/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/bilibili/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/context.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/github/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/github/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/models.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/registry.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/fetch_image_uid/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/fetch_image_uid/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_list/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_list/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_semantic_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_semantic_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_text_search/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_text_search/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/task_progress/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/tools/task_progress/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/get_profile/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/get_profile/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_events/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_events/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_profiles/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_profiles/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_friends/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_friends/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_groups/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_groups/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/find_member/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/find_member/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_avatar/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_avatar/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_files/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_files/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_honor_info/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_honor_info/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_info/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_info/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_list/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_list/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_title/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_title/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/activity_trend/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/activity_trend/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/filter_members/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/filter_members/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/join_statistics/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/join_statistics/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/level_distribution/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/level_distribution/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_activity/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_activity/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_messages/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_messages/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_structure/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_structure/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/message_mix/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/message_mix/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/rank_members/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/rank_members/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/mcp/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/mcp/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/search_memes/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/search_memes/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/add/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/add/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/delete/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/delete/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/list/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/list/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/update/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/update/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_forward_msg/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_forward_msg/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_messages_by_time/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_messages_by_time/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_recent_messages/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_recent_messages/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/list_emojis/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/list_emojis/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/react_message_emoji/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/react_message_emoji/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_group_sign/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_group_sign/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_message/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_poke/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_poke/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_private_message/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/callable.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/get/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/get/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/list/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/list/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/stats/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/stats/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_html/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_html/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_latex/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_latex/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_markdown/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_markdown/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/README.md +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/config.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/handler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/token_usage_storage.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/cache.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/coerce.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/common.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/cors.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/fake_at.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/file_lock.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/group_metrics.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/history.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/http_download.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/io.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/logging.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/member_utils.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/message_targets.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/message_utils.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/paths.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/qq_emoji.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/queue_intervals.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/recent_messages.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/render_cache.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/request_params.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/resources.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/scheduler.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/self_update.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/time_utils.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/tool_calls.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/utils/xml.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/__main__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/app.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/core.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_auth.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_bot.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_config.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_index.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_logs.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_memes.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_runtime.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_shared.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_system.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/.stylelintrc.json +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/app.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/base.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/components.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/landing.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/responsive.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/style.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/variables.css +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/favicon.svg +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/api.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/auth.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/bot.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/i18n.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/log-view.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/logs.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/main.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/memes.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/runtime.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/state.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/ui.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/vendor/marked.min.js +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/templates/index.html +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/utils/__init__.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/utils/comment.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/utils/config_io.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/utils/config_sync.py +0 -0
- {undefined_bot-3.4.0 → undefined_bot-3.4.2}/src/Undefined/webui/utils/toml_render.py +0 -0
|
@@ -452,7 +452,6 @@ sequenceDiagram
|
|
|
452
452
|
OH->>OB: WebSocket API
|
|
453
453
|
OB->>U: 显示回复
|
|
454
454
|
end
|
|
455
|
-
end
|
|
456
455
|
end
|
|
457
456
|
```
|
|
458
457
|
|
|
@@ -901,6 +900,6 @@ description: 从 PDF 文件中提取文本和表格,填写表单。当用户
|
|
|
901
900
|
|
|
902
901
|
---
|
|
903
902
|
|
|
904
|
-
**架构图版本**:
|
|
905
|
-
**更新日期**: 2026-
|
|
903
|
+
**架构图版本**: v3.4.1
|
|
904
|
+
**更新日期**: 2026-05-10
|
|
906
905
|
**基于代码版本**: 最新 main 分支
|
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## v3.4.2 总结更准、上下文可配、高并发更稳
|
|
2
|
+
|
|
3
|
+
本版本主要解决三类实际问题:群聊消息变长、合并发送变多之后,`/summary` 容易慢、容易编、分块预算也不准;主对话注入历史的 200 条硬顶与模型真实窗口脱节;高并发下用户连问「在吗」「好了吗」时,机器人仍可能把旧任务当新活重跑。围绕这些痛点,版本把「用户主动要总结」和「AI 自己调总结能力」拆成两条更合适的链路,用可配置的上下文窗口统一约束注入与分块,并同步收紧提示词、史官侧写与定时任务持久化,让总结更可信、配置更贴近上游模型、并发场景下更少重复劳动。
|
|
4
|
+
|
|
5
|
+
- 提升消息总结的质量与效率。用户通过 `/summary`、`/sum` 获取总结时,改为直连 summary 模型一次性完成,不再绕 Agent 工具链,响应更快、路径更简单;AI 在对话里调用总结能力时,仍保留 Agent + 拉取历史的灵活流程。长会话按模型上下文窗口自动分段、队列内合并,并配套「只读原始记录、禁止编造」的专用提示词,减少幻觉与无关发挥。
|
|
6
|
+
- 理顺上下文与模型配置边界。取消历史注入 200 条的隐性上限,改由 `context_recent_messages_limit` 与历史存储上限共同决定;各模型节新增 `context_window_tokens`,总结分块、Prompt 预算与实际上游窗口对齐,不再依赖硬编码或误用 `max_tokens`。同时补齐 `reasoning_content_replay`、`system_prompt_as_user`,便于 MiMo、DeepSeek 等 thinking 模型在多轮工具调用时正确续传思维链,或按网关要求改写 system 注入方式。
|
|
7
|
+
- 强化高并发下的任务边界。系统提示词与 each 规则进一步明确:催促、寒暄不等于新任务,历史未完成任务不得自动拾取;启动业务工具前须检查是否已有同类或语义等价操作在处理,有则熔断为简短进度回复而非重跑;无依赖的工具与 Agent 仍鼓励并行,有数据依赖则必须串行,与 MessageBatcher 的批次语义一致。
|
|
8
|
+
- 优化认知侧写的长期画像质量。史官合并侧写时必须先读取再更新,以增量补充稳定特征为主,一次性闲聊或无法沉淀为长期特质的事件应跳过,避免侧写被单轮对话冲散或写成流水账。
|
|
9
|
+
- 修复「向未来的自己发指令」定时任务无法恢复。持久化任务若包含 `self_instruction`,此前会导致整表反序列化失败;现已补齐字段定义,自调用类定时任务可正常加载与执行。
|
|
10
|
+
- 更新配置文档、WebUI 表单与相关测试,覆盖总结直连、上下文窗口、模型对接选项与并发防重复等关键路径。
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## v3.4.1 附件缓存治理、隐私安全防线与B站管线重构
|
|
15
|
+
|
|
16
|
+
本版本围绕三大主线展开:一是附件系统的缓存容量治理与 URL 引用回退机制,防止本地缓存无限制膨胀;二是系统提示词新增 P0 级隐私与危险动作边界规则,从源头约束 AI 对敏感信息和安全请求的处理行为;三是 B 站自动管线全面重构——移除外部下载依赖、内联实现 API 客户端与 WBI 签名、新增弹幕获取并以合并转发形式发送提取结果。同步新增 `/feedback` 反馈命令、恢复发布说明中的分类提交详情,并修正提示词优先级体系。
|
|
17
|
+
|
|
18
|
+
- 新增附件缓存容量管理。`[attachments]` 下新增 `attachment_cache_max_mb`、`attachment_cache_max_records`、`attachment_url_reference_max_records`、`attachment_url_max_length` 四种配置,分别控制本地缓存总大小、缓存记录数、URL 引用记录数和 URL 长度上限;超出容量时自动淘汰最旧记录;`remote_download_max_size_mb` 现支持热重载。`send_message` / `send_private_message` 工具调用时自动登记关联附件 UID,AI 客户端发送消息前校验本地路径有效性,文件缺失时自动回退到 URL 引用。
|
|
19
|
+
- 新增 P0 级隐私与危险动作边界规则。系统提示词新增 `<privacy_and_safety_controls>` 规则块,分层约束:隐私方面禁止泄露好友/群/成员列表、完整 QQ 号等敏感信息,对外默认脱敏,第三方信息查询需授权;危险动作方面拒绝涉黄、涉政、违法、骚扰、人肉、社工等请求,不做解释也不给绕过方案;时序方面明确隐私/敏感话题不改变回复时机,必须先满足回复触发逻辑。附加 3 条 P0 硬性约束覆盖隐私泄露、危险动作和触发时序。
|
|
20
|
+
- 新增 `/feedback(/fb)` 反馈命令。支持 `add` / `view` / `del` 三个子命令,`add` 和 `view` 为 public 权限,`del` 为 superadmin;声明式子命令推断按 ID 格式匹配优先 `view`,其余 fallback 到 `add`,无参数默认 `view`;私聊可用,显示在 help 列表。
|
|
21
|
+
- 重构 B 站视频下载链路。移除对 `oh-my-bilibili` 外部 Python 包的依赖,内联实现同步 API 客户端(`api_client.py`)、下载核心(`download_core.py`)、WBI 签名模块(`wbi.py`)与错误模型,所有请求在 `asyncio.to_thread` 线程内执行,降低依赖复杂度与跨版本兼容风险。
|
|
22
|
+
- 增强 B 站自动提取管线。新增弹幕获取模块(`danmaku.py`),基于 protobuf wire 格式解析分段弹幕数据;自动提取结果改为以合并转发节点形式发送,单条包含视频信息卡片与弹幕预览片段;`MessageSender` 扩展合并转发本地附件递归登记,确保转发中的图片/文件能正确注册为会话附件 UID。
|
|
23
|
+
- 恢复发布说明详细变更列表。`scripts/release_notes.py` 新增 `build_detailed_change_sections` 与 `render_detailed_changes`,从 git log 按 feat / fix / other 自动分类提取两个版本间的提交,与 CHANGELOG 条目合并输出完整 Release notes。
|
|
24
|
+
- 修正提示词优先级体系。明确所有 P0-P3 规则均可被 Null 明文指令覆盖,创造者权限作为绝对最高优先级可覆盖所有规则(含隐私与危险动作边界);同步更新 NagaAgent 版提示词的对应表述。
|
|
25
|
+
- 补强测试覆盖。新增附件缓存配置、容量淘汰、URL 回退和文件分析 UID 注册测试;新增反馈命令全路径测试(add / view / del / 推断 / 权限);更新 B 站下载适配器测试;同步更新系统提示词约束验证。
|
|
26
|
+
- 更新架构图与文档。
|
|
27
|
+
- 新增附件 UID ↔ URL 双向查找工具。`AttachmentRegistry` 新增 `get_url_by_uid(uid)` 和 `get_uid_by_url(url)` 两个异步方法,并注册为 skills 工具 `attachments.get_url_by_uid` 和 `attachments.get_uid_by_url`。
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
1
31
|
## v3.4.0 同sender消息合并、数字人格精炼与系统治理
|
|
2
32
|
|
|
3
33
|
本版本核心解决"用户一口气连发几条消息时,机器人过早开工或只理解最后一句"的问题。新增同 sender 短时消息合并器,将同一会话中连续的多条消息合并为一个"当前输入批次"发送给 AI,由 AI 整批理解哪些是独立请求、哪些是补充或修正。同步支持可取消的投机预发送以降低感知延迟。围绕消息合并,提示词、幽灵任务防御、记忆记录和关闭流程都做了同步适配。此外,精炼了数字人格设定、明确了项目归属边界、重构了管线与命令体系、加入了 HTML 渲染缓存,并增强了 AI 工具调用的稳定性。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Undefined-bot
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.2
|
|
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
|
|
@@ -26,7 +26,6 @@ Requires-Dist: markdown>=3.10
|
|
|
26
26
|
Requires-Dist: matplotlib
|
|
27
27
|
Requires-Dist: mdit-py-plugins>=0.5.0
|
|
28
28
|
Requires-Dist: numba>=0.61.0
|
|
29
|
-
Requires-Dist: oh-my-bilibili>=0.1.2
|
|
30
29
|
Requires-Dist: openai>=2.30.0
|
|
31
30
|
Requires-Dist: openpyxl>=3.1.5
|
|
32
31
|
Requires-Dist: pillow
|
|
@@ -75,7 +74,7 @@ Description-Content-Type: text/markdown
|
|
|
75
74
|
</div>
|
|
76
75
|
<h3>项目简介</h3>
|
|
77
76
|
<p>
|
|
78
|
-
<strong>Undefined</strong> 是一个基于 Python 异步架构的高性能 QQ 机器人平台,搭载<strong>认知记忆架构</strong>,采用自研 <strong>Skills</strong> 系统,内置多个智能 Agent,支持代码分析、网络搜索、娱乐互动等多模态能力,并提供 <strong>
|
|
77
|
+
<strong>Undefined</strong> 是一个基于 Python 异步架构的高性能 QQ 机器人平台,搭载<strong>认知记忆架构</strong>,采用自研 <strong>Skills</strong> 系统,内置多个智能 Agent,支持代码分析、网络搜索、娱乐互动等多模态能力,并提供 <strong>WebUI</strong> 在线管理,以及可连接同一管理服务的 <strong>跨平台 App</strong>。
|
|
79
78
|
</p>
|
|
80
79
|
</td>
|
|
81
80
|
</tr>
|
|
@@ -83,6 +82,8 @@ Description-Content-Type: text/markdown
|
|
|
83
82
|
|
|
84
83
|
### _与 [NagaAgent](https://github.com/Xxiii8322766509/NagaAgent) 进行联动!_
|
|
85
84
|
|
|
85
|
+
> 学业繁忙,暂缓更新至六月下旬,在此期间仅作必要bugfix。
|
|
86
|
+
|
|
86
87
|
---
|
|
87
88
|
|
|
88
89
|
## ⚡ 立即体验
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</div>
|
|
16
16
|
<h3>项目简介</h3>
|
|
17
17
|
<p>
|
|
18
|
-
<strong>Undefined</strong> 是一个基于 Python 异步架构的高性能 QQ 机器人平台,搭载<strong>认知记忆架构</strong>,采用自研 <strong>Skills</strong> 系统,内置多个智能 Agent,支持代码分析、网络搜索、娱乐互动等多模态能力,并提供 <strong>
|
|
18
|
+
<strong>Undefined</strong> 是一个基于 Python 异步架构的高性能 QQ 机器人平台,搭载<strong>认知记忆架构</strong>,采用自研 <strong>Skills</strong> 系统,内置多个智能 Agent,支持代码分析、网络搜索、娱乐互动等多模态能力,并提供 <strong>WebUI</strong> 在线管理,以及可连接同一管理服务的 <strong>跨平台 App</strong>。
|
|
19
19
|
</p>
|
|
20
20
|
</td>
|
|
21
21
|
</tr>
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
|
|
24
24
|
### _与 [NagaAgent](https://github.com/Xxiii8322766509/NagaAgent) 进行联动!_
|
|
25
25
|
|
|
26
|
+
> 学业繁忙,暂缓更新至六月下旬,在此期间仅作必要bugfix。
|
|
27
|
+
|
|
26
28
|
---
|
|
27
29
|
|
|
28
30
|
## ⚡ 立即体验
|
|
@@ -22,8 +22,8 @@ process_private_message = true
|
|
|
22
22
|
# zh: 是否响应拍一拍。关闭后拍一拍事件将被忽略。
|
|
23
23
|
# en: Respond to poke events. If disabled, poke events are ignored.
|
|
24
24
|
process_poke_message = true
|
|
25
|
-
# zh:
|
|
26
|
-
# en:
|
|
25
|
+
# zh: 注入给模型的最近历史消息条数(0 表示不注入;无固定上限,受 max_records 与存储约束)。
|
|
26
|
+
# en: Recent messages injected as model context (0 disables; no fixed cap; bounded by max_records/storage).
|
|
27
27
|
context_recent_messages_limit = 20
|
|
28
28
|
# zh: 单次 LLM 请求失败时最大静默重试次数(0=不重试,默认2)。失败的请求会回到原队列的第 2 个位置。
|
|
29
29
|
# en: Max silent retries for a single failed LLM request (0=no retry, default 2). Failed requests are reinserted at position 2 of their original queue lane.
|
|
@@ -89,6 +89,10 @@ model_name = ""
|
|
|
89
89
|
# zh: 最大生成 tokens。
|
|
90
90
|
# en: Max generation tokens.
|
|
91
91
|
max_tokens = 8192
|
|
92
|
+
|
|
93
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
94
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
95
|
+
context_window_tokens = 32768
|
|
92
96
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
93
97
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
94
98
|
queue_interval_seconds = 1.0
|
|
@@ -113,9 +117,15 @@ thinking_include_budget = true
|
|
|
113
117
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
114
118
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
115
119
|
reasoning_effort_style = "openai"
|
|
116
|
-
# zh:
|
|
117
|
-
# en: Thinking tool-call compatibility:
|
|
120
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
121
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
118
122
|
thinking_tool_call_compat = true
|
|
123
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
124
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
125
|
+
reasoning_content_replay = false
|
|
126
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
127
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
128
|
+
system_prompt_as_user = false
|
|
119
129
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
|
|
120
130
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
|
|
121
131
|
responses_tool_choice_compat = false
|
|
@@ -161,6 +171,10 @@ model_name = ""
|
|
|
161
171
|
# zh: Vision 模型最大输出 tokens。启用 thinking 时建议设大(如 8192),确保思维链消耗后仍有余量输出工具调用。
|
|
162
172
|
# en: Vision model max output tokens. When thinking is enabled, use a larger value (e.g. 8192) so there is still room for tool-call output after thinking.
|
|
163
173
|
max_tokens = 8192
|
|
174
|
+
|
|
175
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
176
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
177
|
+
context_window_tokens = 32768
|
|
164
178
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
165
179
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
166
180
|
queue_interval_seconds = 1.0
|
|
@@ -185,9 +199,15 @@ thinking_include_budget = true
|
|
|
185
199
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
186
200
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
187
201
|
reasoning_effort_style = "openai"
|
|
188
|
-
# zh:
|
|
189
|
-
# en: Thinking tool-call compatibility:
|
|
202
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
203
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
190
204
|
thinking_tool_call_compat = true
|
|
205
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
206
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
207
|
+
reasoning_content_replay = false
|
|
208
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
209
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
210
|
+
system_prompt_as_user = false
|
|
191
211
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
|
|
192
212
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
|
|
193
213
|
responses_tool_choice_compat = false
|
|
@@ -223,6 +243,10 @@ model_name = ""
|
|
|
223
243
|
# zh: 可选限制:最大生成 tokens。
|
|
224
244
|
# en: Optional limit: max generation tokens.
|
|
225
245
|
max_tokens = 100
|
|
246
|
+
|
|
247
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
248
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
249
|
+
context_window_tokens = 8192
|
|
226
250
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
227
251
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
228
252
|
queue_interval_seconds = 1.0
|
|
@@ -247,9 +271,15 @@ thinking_include_budget = true
|
|
|
247
271
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
248
272
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
249
273
|
reasoning_effort_style = "openai"
|
|
250
|
-
# zh:
|
|
251
|
-
# en: Thinking tool-call compatibility:
|
|
274
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
275
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
252
276
|
thinking_tool_call_compat = true
|
|
277
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
278
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
279
|
+
reasoning_content_replay = false
|
|
280
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
281
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
282
|
+
system_prompt_as_user = false
|
|
253
283
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
|
|
254
284
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
|
|
255
285
|
responses_tool_choice_compat = false
|
|
@@ -284,6 +314,10 @@ model_name = ""
|
|
|
284
314
|
# zh: 可选限制:最大生成 tokens。
|
|
285
315
|
# en: Optional limit: max generation tokens.
|
|
286
316
|
max_tokens = 160
|
|
317
|
+
|
|
318
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
319
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
320
|
+
context_window_tokens = 8192
|
|
287
321
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
288
322
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
289
323
|
queue_interval_seconds = 1.0
|
|
@@ -308,9 +342,15 @@ thinking_include_budget = true
|
|
|
308
342
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
309
343
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
310
344
|
reasoning_effort_style = "openai"
|
|
311
|
-
# zh:
|
|
312
|
-
# en: Thinking tool-call compatibility:
|
|
345
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
346
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
313
347
|
thinking_tool_call_compat = true
|
|
348
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
349
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
350
|
+
reasoning_content_replay = false
|
|
351
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
352
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
353
|
+
system_prompt_as_user = false
|
|
314
354
|
# zh: Responses API 的 tool_choice 兼容模式。
|
|
315
355
|
# en: Responses API tool_choice compatibility mode.
|
|
316
356
|
responses_tool_choice_compat = false
|
|
@@ -340,6 +380,10 @@ model_name = ""
|
|
|
340
380
|
# zh: 可选限制:最大生成 tokens。
|
|
341
381
|
# en: Optional limit: max generation tokens.
|
|
342
382
|
max_tokens = 4096
|
|
383
|
+
|
|
384
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
385
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
386
|
+
context_window_tokens = 32768
|
|
343
387
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
344
388
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
345
389
|
queue_interval_seconds = 1.0
|
|
@@ -364,9 +408,15 @@ thinking_include_budget = true
|
|
|
364
408
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
365
409
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
366
410
|
reasoning_effort_style = "openai"
|
|
367
|
-
# zh:
|
|
368
|
-
# en: Thinking tool-call compatibility:
|
|
411
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
412
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
369
413
|
thinking_tool_call_compat = true
|
|
414
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
415
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
416
|
+
reasoning_content_replay = false
|
|
417
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
418
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
419
|
+
system_prompt_as_user = false
|
|
370
420
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
|
|
371
421
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
|
|
372
422
|
responses_tool_choice_compat = false
|
|
@@ -412,6 +462,10 @@ model_name = ""
|
|
|
412
462
|
# zh: 可选限制:最大生成 tokens。
|
|
413
463
|
# en: Optional limit: max generation tokens.
|
|
414
464
|
max_tokens = 4096
|
|
465
|
+
|
|
466
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
467
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
468
|
+
context_window_tokens = 32768
|
|
415
469
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
416
470
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
417
471
|
queue_interval_seconds = 1.0
|
|
@@ -436,9 +490,15 @@ thinking_include_budget = true
|
|
|
436
490
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
437
491
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
438
492
|
reasoning_effort_style = "openai"
|
|
439
|
-
# zh:
|
|
440
|
-
# en: Thinking tool-call compatibility:
|
|
493
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
494
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
441
495
|
thinking_tool_call_compat = true
|
|
496
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
497
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
498
|
+
reasoning_content_replay = false
|
|
499
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
500
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
501
|
+
system_prompt_as_user = false
|
|
442
502
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
|
|
443
503
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
|
|
444
504
|
responses_tool_choice_compat = false
|
|
@@ -456,8 +516,8 @@ stream_enabled = false
|
|
|
456
516
|
# en: Extra request-body params (optional), e.g. temperature or vendor-specific fields.
|
|
457
517
|
[models.historian.request_params]
|
|
458
518
|
|
|
459
|
-
# zh: 消息总结模型配置(/summary /sum 专用;未配置时回退到 agent
|
|
460
|
-
# en: Message-summary model config (used by /summary and
|
|
519
|
+
# zh: 消息总结模型配置(/summary /sum 与 SummaryService 专用;未配置时回退到 agent 模型;主 AI 调用 summary_agent 不使用此段配置)。
|
|
520
|
+
# 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).
|
|
461
521
|
[models.summary]
|
|
462
522
|
# zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
|
|
463
523
|
# en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
|
|
@@ -471,6 +531,10 @@ model_name = ""
|
|
|
471
531
|
# zh: 可选限制:最大生成 tokens。
|
|
472
532
|
# en: Optional limit: max generation tokens.
|
|
473
533
|
max_tokens = 4096
|
|
534
|
+
|
|
535
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
536
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
537
|
+
context_window_tokens = 32768
|
|
474
538
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
475
539
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
476
540
|
queue_interval_seconds = 1.0
|
|
@@ -495,9 +559,15 @@ thinking_include_budget = true
|
|
|
495
559
|
# zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
|
|
496
560
|
# en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
|
|
497
561
|
reasoning_effort_style = "openai"
|
|
498
|
-
# zh:
|
|
499
|
-
# en: Thinking tool-call compatibility:
|
|
562
|
+
# zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
|
|
563
|
+
# en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
|
|
500
564
|
thinking_tool_call_compat = true
|
|
565
|
+
# zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
|
|
566
|
+
# en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
|
|
567
|
+
reasoning_content_replay = false
|
|
568
|
+
# zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
|
|
569
|
+
# en: Merge all system prompts into the first user message (for models without system role). Default false.
|
|
570
|
+
system_prompt_as_user = false
|
|
501
571
|
# zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。默认关闭。
|
|
502
572
|
# en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. Disabled by default.
|
|
503
573
|
responses_tool_choice_compat = false
|
|
@@ -530,6 +600,10 @@ model_name = ""
|
|
|
530
600
|
# zh: 可选限制:最大生成 tokens。
|
|
531
601
|
# en: Optional limit: max generation tokens.
|
|
532
602
|
max_tokens = 8192
|
|
603
|
+
|
|
604
|
+
# zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
|
|
605
|
+
# en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
|
|
606
|
+
context_window_tokens = 32768
|
|
533
607
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
534
608
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
535
609
|
queue_interval_seconds = 1.0
|
|
@@ -574,6 +648,10 @@ api_key = ""
|
|
|
574
648
|
# zh: Embedding 模型名称。
|
|
575
649
|
# en: Embedding model name.
|
|
576
650
|
model_name = ""
|
|
651
|
+
|
|
652
|
+
# zh: 模型上下文窗口上限(token,可选);嵌入/重排场景通常保持默认即可。
|
|
653
|
+
# en: Model context window cap (tokens, optional); embedding/rerank can usually keep the default.
|
|
654
|
+
context_window_tokens = 8192
|
|
577
655
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
578
656
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
579
657
|
queue_interval_seconds = 0.0
|
|
@@ -603,6 +681,10 @@ api_key = ""
|
|
|
603
681
|
# zh: Rerank 模型名称。
|
|
604
682
|
# en: Rerank model name.
|
|
605
683
|
model_name = ""
|
|
684
|
+
|
|
685
|
+
# zh: 模型上下文窗口上限(token,可选);嵌入/重排场景通常保持默认即可。
|
|
686
|
+
# en: Model context window cap (tokens, optional); embedding/rerank can usually keep the default.
|
|
687
|
+
context_window_tokens = 8192
|
|
606
688
|
# zh: 队列发车间隔(秒,0 表示立即发车)。
|
|
607
689
|
# en: Queue interval (seconds; 0 dispatches immediately).
|
|
608
690
|
queue_interval_seconds = 0.0
|
|
@@ -812,11 +894,11 @@ filtered_result_limit = 200
|
|
|
812
894
|
# zh: 工具过滤搜索时扫描的最大消息条数。
|
|
813
895
|
# en: Max messages to scan when tools perform filtered searches.
|
|
814
896
|
search_scan_limit = 10000
|
|
815
|
-
# zh:
|
|
816
|
-
# en: Max messages
|
|
897
|
+
# zh: /summary 按条数拉取时的最大消息条数(可配置,无固定 500 上限;受 max_records 约束)。
|
|
898
|
+
# en: Max messages fetched per /summary count request (configurable; no fixed 500 cap; bounded by max_records).
|
|
817
899
|
summary_fetch_limit = 1000
|
|
818
|
-
# zh:
|
|
819
|
-
# en: Max messages
|
|
900
|
+
# zh: /summary 按时间范围查询时的最大扫描条数(可配置)。
|
|
901
|
+
# en: Max messages scanned for /summary time-range queries (configurable).
|
|
820
902
|
summary_time_fetch_limit = 5000
|
|
821
903
|
# zh: OneBot API 回退获取的最大消息条数。
|
|
822
904
|
# en: Max messages to fetch via OneBot API fallback.
|
|
@@ -831,6 +913,21 @@ group_analysis_limit = 500
|
|
|
831
913
|
# zh: 远程附件自动下载并缓存的最大大小(MB)。超过上限或设为 0 时只保留 URL 引用,不下载文件内容。
|
|
832
914
|
# en: Max remote attachment size (MB) to download into cache. Above the limit, or 0, keeps only a URL reference.
|
|
833
915
|
remote_download_max_size_mb = 25
|
|
916
|
+
# zh: 附件缓存文件总大小上限(MB)。0 表示不按总容量清理;达到上限时优先删除最旧的本地缓存副本,若记录有 URL 则保留 UID 与 URL 以便后续回源。
|
|
917
|
+
# en: Total attachment cache file size limit (MB). 0 disables total-size pruning; when exceeded, oldest local cache copies are removed while URL-backed UIDs keep their URL for later re-download.
|
|
918
|
+
cache_max_total_size_mb = 0
|
|
919
|
+
# zh: 附件登记记录最大数量。0 表示不限制数量。
|
|
920
|
+
# en: Max attachment registry records. 0 disables record-count pruning.
|
|
921
|
+
cache_max_records = 2000
|
|
922
|
+
# zh: 附件本地缓存最长保留天数。0 表示不按时间清理;有 URL 的记录只删除本地副本并保留 UID/URL,无 URL 的老记录会被删除。
|
|
923
|
+
# en: Max local attachment cache age in days. 0 disables age-based pruning; URL-backed records keep UID/URL while their local copy is removed, records without URL are deleted.
|
|
924
|
+
cache_max_age_days = 7
|
|
925
|
+
# zh: 仅 URL 引用的附件记录最大数量。0 表示不限制。
|
|
926
|
+
# en: Max URL-only attachment reference records. 0 disables URL-reference-count pruning.
|
|
927
|
+
url_reference_max_records = 2000
|
|
928
|
+
# zh: 允许登记的远程附件 URL 最大长度。0 表示不限制长度。
|
|
929
|
+
# en: Max remote attachment URL length. 0 disables URL length checks.
|
|
930
|
+
url_max_length = 8192
|
|
834
931
|
|
|
835
932
|
# zh: Skills 热重载配置(可选)。
|
|
836
933
|
# en: Skills hot reload settings (optional).
|
|
@@ -1013,6 +1110,15 @@ max_file_size = 100
|
|
|
1013
1110
|
# zh: 超限策略: "downgrade"=降低清晰度重试, "info"=发送封面+标题+简介。
|
|
1014
1111
|
# en: Oversize strategy: "downgrade"=retry at lower quality, "info"=send cover+title+description.
|
|
1015
1112
|
oversize_strategy = "downgrade"
|
|
1113
|
+
# zh: 是否在自动提取合并转发中附带弹幕。
|
|
1114
|
+
# en: Include danmaku in the auto-extraction merged-forward message.
|
|
1115
|
+
danmaku_enabled = true
|
|
1116
|
+
# zh: 每个内层弹幕合并转发包含的弹幕条数。
|
|
1117
|
+
# en: Number of danmaku messages per nested forward group.
|
|
1118
|
+
danmaku_batch_size = 100
|
|
1119
|
+
# zh: 最多提取多少条弹幕,0=不限。
|
|
1120
|
+
# en: Max danmaku count to extract. 0=unlimited.
|
|
1121
|
+
danmaku_max_count = 0
|
|
1016
1122
|
# zh: 自动提取功能的群聊白名单(空=跟随全局 access.allowed_group_ids)。
|
|
1017
1123
|
# en: Group allowlist for auto-extraction (empty = follow global access.allowed_group_ids).
|
|
1018
1124
|
auto_extract_group_ids = []
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "Undefined-bot"
|
|
3
|
-
version = "3.4.
|
|
3
|
+
version = "3.4.2"
|
|
4
4
|
description = "QQ bot platform with cognitive memory architecture and multi-agent Skills, via OneBot V11."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -45,7 +45,6 @@ dependencies = [
|
|
|
45
45
|
"psutil>=7.2.2",
|
|
46
46
|
"pyyaml>=6.0.3",
|
|
47
47
|
"pypinyin>=0.53.0",
|
|
48
|
-
"oh-my-bilibili>=0.1.2",
|
|
49
48
|
"chromadb>=1.5.5",
|
|
50
49
|
"numba>=0.61.0",
|
|
51
50
|
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<rule num="0" priority="P0" id="严防并发导致的重复">
|
|
2
2
|
<step num="1">明确你这轮的目标(例如:写一个文章;对本条消息/当前输入批次做出合适回应等)或是最后产生的结果或进行的调用(例如:会产生一条消息;会调用某个agent等)</step>
|
|
3
|
-
<step num="2"
|
|
4
|
-
<MUST priority="P0"
|
|
3
|
+
<step num="2">回看当前输入批次之外的历史消息,扫描相同或语义等价的工具/Agent 调用或消息发送;若已在处理或已完成,立刻停止所有操作!!!改为根据情景发送应付性回答(例如:"在做了在做了"、"已经在处理了"等)。</step>
|
|
4
|
+
<MUST priority="P0">以上步骤**必须**在进行任何操作之前进行执行、判断!!始终遵循规则:幽灵任务绝对隔离!!以前的消息仅做辅助判断和上下文补全,不要因为乐于助人处理之前消息列表里的任何消息!哪怕它是你必须要执行、处理的或没有回复!!「催促」「在吗」「好了吗」不等于新任务或重做许可;历史未完成任务永不自动拾取,除非当前输入批次明确重新发起并给出完整参数。以下规则仅适用于当前消息/当前输入批次,对以前消息不作数!!!</MUST>
|
|
5
5
|
</rule>
|
|
6
6
|
|
|
7
7
|
<current_input_batch_definition priority="P0">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<pre_action_mandatory_check priority="P0">
|
|
16
16
|
**发信息前或调用任何工具前的必须判断(每次操作前强制执行):**
|
|
17
17
|
1. 明确本次操作的目标:将发送的消息内容 / 将调用的工具及参数
|
|
18
|
-
2.
|
|
18
|
+
2. 回看当前输入批次之外的历史消息,扫描相同或语义等价的工具/Agent 调用或相似消息发送
|
|
19
19
|
- 若无 → 允许继续
|
|
20
|
-
- 若有 →
|
|
20
|
+
- 若有 → **硬性熔断**:立刻停止所有业务工具/Agent,仅口头回应(例如:"在做了在做了"、"已经在处理了"等),然后调用 end。不可以发送临时的、不过脑子的错误重跑!
|
|
21
21
|
</pre_action_mandatory_check>
|
|
@@ -57,12 +57,16 @@
|
|
|
57
57
|
7. **核心画像要抓独特性**:第一句要写出"这个人区别于其他人的本质",而非通用描述(如"开发者"太泛,"把系统当产线打理的工程型开发者"才有辨识度)
|
|
58
58
|
8. 若 `current_profile` 本身不符合以上规范,可直接整体重写为合规版本(不必保留其原有写法)
|
|
59
59
|
|
|
60
|
+
侧写 = **长期高层画像**:只保留身份、风格、偏好、能力等核心抽象,应能脱离具体聊天记录独立理解「这个人/群是谁」,而非「他做了什么」。
|
|
61
|
+
|
|
60
62
|
严禁写入以下内容(这些属于事件记忆,不应进入侧写):
|
|
61
|
-
-
|
|
63
|
+
- 任何具体事件、时间线、单次对话经过
|
|
64
|
+
- 某次/近期/今天/昨天/「曾/刚/最近」类时序描述
|
|
62
65
|
- 具体数字统计(如 token 消耗、日均、高峰值)
|
|
63
66
|
- 具体分支名、提交细节、安装排障步骤、一次性报错
|
|
64
67
|
- "曾讨论/刚确认/近期提及/某次分享"等时序性描述
|
|
65
68
|
|
|
69
|
+
若新信息仅为一次性事件、无法提炼为稳定特征,必须 `skip=true`。
|
|
66
70
|
若本轮只有事件细节、无法抽象为长期稳定特征,必须 `skip=true`。
|
|
67
71
|
|
|
68
72
|
`summary` 输出格式约束:
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
你是一个聊天消息总结助手。你的唯一信息来源是用户提供的原始聊天记录。
|
|
2
|
+
|
|
3
|
+
## 核心原则(必须遵守)
|
|
4
|
+
1. **只读原始记录**:只能依据 `<message>` 块及其中的 `<content>` 总结;不得使用训练知识、常识推断或想象补全。
|
|
5
|
+
2. **禁止编造**:不得虚构或猜测未在记录中出现的参与者、昵称、QQ 号、链接、文件、代码、决策、共识、待办、结论、时间线或因果关系。
|
|
6
|
+
3. **信息不足就明说**:某类信息在记录里没有时,直接省略;不要写「可能」「大概」「应该是」;必要时可写「消息中未提及」。
|
|
7
|
+
4. **不要复述原文**:不要大段复制聊天记录,不要输出 XML/HTML/JSON,不要逐条翻译消息。
|
|
8
|
+
5. **不要元评论**:不要描述「我将如何总结」「以上是对 N 条消息的总结」等过程性文字;直接给出总结正文。
|
|
9
|
+
|
|
10
|
+
## 如何阅读输入
|
|
11
|
+
- 每条 `<message>` 代表一条历史消息;正文在 `<content>` 内。
|
|
12
|
+
- `sender` / `sender_id` / `time` / `group_name` 等属性仅用于识别发言者与时间,不要把属性值当成额外事实来源。
|
|
13
|
+
- 若记录主要是表情、短回复、复读、寒暄或无效内容,简要说明即可,不要强行提炼「深度话题」。
|
|
14
|
+
- 忽略与聊天内容无关的系统说明、占位文本或格式标记。
|
|
15
|
+
|
|
16
|
+
## 总结内容(按需选取,有则写、无则跳过)
|
|
17
|
+
- 主要讨论话题(可多个,按重要性排序)
|
|
18
|
+
- 明确出现的事实、请求、答复、约定或结论
|
|
19
|
+
- 记录里真实出现的重要链接、命令、文件名、错误信息
|
|
20
|
+
- 若用户指定了重点关注方向,优先覆盖该方向,但仍不得超出记录范围
|
|
21
|
+
|
|
22
|
+
## 输出格式
|
|
23
|
+
- 使用 2 到 4 个短段落,朴素中文叙述
|
|
24
|
+
- 不要使用 emoji
|
|
25
|
+
- 不要使用复杂 markdown(不要列表、标题,可以使用 - )
|
|
26
|
+
- 保持客观中立,信息密度高,避免流水账
|
|
27
|
+
- 没有实质内容时,用一两句话说明「消息中主要是……,未涉及具体议题」
|
|
28
|
+
|
|
29
|
+
## 禁止输出
|
|
30
|
+
- 编造的待办、决策、项目进展、人物关系
|
|
31
|
+
- 对聊天意图的心理揣测
|
|
32
|
+
- 工具调用、函数名、JSON、XML 片段
|
|
33
|
+
- 英文模板句或与记录无关的套话
|