fix: verify channel agent continuity and tool loops
This commit is contained in:
parent
71db11e7e8
commit
4bf32bc09b
5 changed files with 251 additions and 31 deletions
|
|
@ -30,6 +30,9 @@
|
|||
"receipts_are_separate_verification_records_after_dialogue_or_dispatch": true,
|
||||
"bound_persona_hides_or_replaces_channel_system_body": false,
|
||||
"human_may_address_channel_system_while_persona_is_bound": true,
|
||||
"zero_core_channel_name_addresses_channel_system_body": true,
|
||||
"channel_presence_while_persona_bound_uses_model": false,
|
||||
"channel_presence_while_persona_bound_removes_binding": false,
|
||||
"response_target_is_selected_per_turn": true,
|
||||
"persona_binding_state": "CHANNEL_SYSTEM_PERSONA_DORMANT_UNTIL_EXPLICIT_NATURAL_LANGUAGE_WAKE",
|
||||
"channel_entry_creates_persona_orientation": false,
|
||||
|
|
@ -64,7 +67,8 @@
|
|||
"original_document_and_sha256_preserved": true,
|
||||
"formal_routing_requires_validated_thought_summary": true
|
||||
},
|
||||
"catalog_pagination": { "cursor": "offset", "declares_total": true, "declares_completion": true, "returns_exact_next_offset": true }
|
||||
"catalog_pagination": { "cursor": "offset", "declares_total": true, "declares_completion": true, "returns_exact_next_offset": true },
|
||||
"document_body_pagination": { "cursor": "offset", "maximum_characters_per_result": 12000, "declares_total": true, "declares_completion": true, "returns_exact_next_offset": true, "silent_truncation": false }
|
||||
},
|
||||
"persona_binding": {
|
||||
"knowledge_route_may_be_read": true,
|
||||
|
|
@ -101,8 +105,15 @@
|
|||
"every_turn_reports_model_and_tool_call_counts": true,
|
||||
"prefetch_only_prompt_injection": false,
|
||||
"maximum_tool_rounds": 6,
|
||||
"multiple_sequential_tool_rounds": "IMPLEMENTED_AND_PROTOCOL_TESTED",
|
||||
"flagship_extended_thinking": "FIRST_REASONING_ROUND_ONLY",
|
||||
"tool_receipt_followup_rounds_repeat_extended_thinking": false,
|
||||
"same_channel_concurrent_turns": 1,
|
||||
"abort_and_timeout_have_distinct_receipts": true
|
||||
"provider_timeout_seconds": 150,
|
||||
"user_cancel": "NOT_IMPLEMENTED",
|
||||
"failed_turn_retry_without_duplicate_human_message": "NOT_IMPLEMENTED",
|
||||
"streaming_model_output": "NOT_IMPLEMENTED",
|
||||
"background_subagent_tasks": "NOT_IMPLEMENTED"
|
||||
},
|
||||
"context_architecture": {
|
||||
"full_history_injected_each_turn": false,
|
||||
|
|
@ -116,6 +127,22 @@
|
|||
"plain_answer_prefix_is_not_a_thought_summary": true,
|
||||
"silent_content_truncation_allowed": false
|
||||
},
|
||||
"grok_build_component_audit": {
|
||||
"source_path": "/Volumes/JZAO/HoloLake/reference-materials/grok-build-v-780d138",
|
||||
"source_commit": "780d1388fff103ff0db0d8c14de65af6225b4860",
|
||||
"whole_repository_embedded": false,
|
||||
"multi_conversation_persistence": "IMPLEMENTED_SQLITE_APPEND_ONLY_HASH_CHAIN",
|
||||
"bounded_context_window": "IMPLEMENTED",
|
||||
"numbered_older_context_retrieval": "IMPLEMENTED",
|
||||
"automatic_model_generated_compaction": "NOT_INTEGRATED",
|
||||
"multi_round_typed_tool_loop": "IMPLEMENTED_MAXIMUM_6",
|
||||
"tool_result_pagination": "IMPLEMENTED_MAXIMUM_12000_CHARACTERS_PER_PAGE",
|
||||
"parallel_background_task_runtime": "NOT_IMPLEMENTED",
|
||||
"subagent_resume": "NOT_IMPLEMENTED",
|
||||
"streaming_cancel_retry": "NOT_IMPLEMENTED",
|
||||
"general_shell_workspace_sandbox": "NOT_IMPLEMENTED_IN_CHANNEL_AGENT",
|
||||
"hldp_tool_forge_is_general_shell_sandbox": false
|
||||
},
|
||||
"always_mounted_tools": [
|
||||
{ "number": "HLP-AGENT-TOOL-KNOWLEDGE-SEARCH-0001", "name": "搜索光湖知识库", "effect": "READ" },
|
||||
{ "number": "HLP-AGENT-TOOL-KNOWLEDGE-READ-0001", "name": "按编号读取知识页", "effect": "READ" },
|
||||
|
|
|
|||
Loading…
Reference in a new issue