나는 LLM이 답변을 하기 전에 중간에 생각하는 것을 포착하기 위한 프로토콜을 구축했습니다.

hackernews | | 🔬 연구
#ai도구 #anthropic #cli #llm #review #생각포착 #프로토콜
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

The author details the development of a protocol designed to intercept Large Language Models during their internal reasoning process. This method aims to observe the model's "thoughts" before they are solidified into a final response. By catching these models mid-thought, the protocol offers deeper insight into their decision-making mechanisms.

본문

WIRE is a command-line tool for exploring a question with two AI roles: - PROBE explores the question step by step - MAP reads the path, extracts useful findings, and suggests what to explore next Instead of only keeping the final answer, WIRE keeps track of the path the model took and saves short findings across runs. WIRE runs a loop like this: - You give it a starting question or seed - PROBE explores that question and marks its current state with a signal - MAP reads the result, extracts any new findings, and picks the next direction - WIRE saves the run so you can continue later The goal is to help you inspect how a model moves through a problem, not just what answer it gives at the end. WIRE uses short signals to show the current reasoning state: - - = still searching - . = landed on something - ? = formal ceiling - ⊘ = practical ceiling - ~ = self-reference loop - ... = hold - -- = terminate Run WIRE and type prompts manually: python wire_v8.py Start from a seed question and let WIRE continue on its own: python wire_v8.py --auto "your seed question" Have MAP choose the next question from prior findings: python wire_v8.py --curious --dots compass.md Look for hidden assumptions underneath earlier findings: python wire_v8.py --ground --dots compass.md Explore with less steering and no strong pressure to build findings: python wire_v8.py --free --dots compass.md Compare a normal answer against a more self-aware structural answer: python wire_v8.py --mirror "your question" Stress-test earlier findings and mark which ones still hold: python wire_v8.py --verify --dots compass.md Review a previous saved run: python wire_v8.py --audit wire_run_TIMESTAMP.json Install the Anthropic Python SDK and set your API key: pip install anthropic export ANTHROPIC_API_KEY=your_key_here WIRE writes a few files during use: - wire_run_TIMESTAMP.json — full archive of one run - map_dots_v8.json — saved findings to reuse later - findings_summary.log — only the strongest new findings - wire_verify_TIMESTAMP.json — verification results - wire_crash_TIMESTAMP.json — emergency dump if a run crashes WIRE stores short findings called dots. Each dot is classified as: - NEW_TERRITORY — a genuinely new finding - PILLAR_ORBIT — too close to known attractor concepts - OVERMAP — too similar to an existing finding Only the strongest new findings are appended to findings_summary.log. You can load prior findings from: - a JSON file created by WIRE - a Markdown compass file passed with --dots This lets you continue building on earlier runs instead of starting from scratch every time. WIRE is a tool for: - exploring a question with an AI - tracking the route it took - extracting reusable findings - carrying those findings into future runs It is less like a normal chatbot and more like a small reasoning workflow you can inspect and continue over time.

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →