* An explore response plus the record of what it emitted (CG-17). The record * rides the result only as far as execute, which files it into the * calling session's state and deletes it — see EXPLORE_EMISSION_KEY.
(text: string, emission: ExploreEmission)
| 5985 | * calling session's state and deletes it — see {@link EXPLORE_EMISSION_KEY}. |
| 5986 | */ |
| 5987 | private exploreResult(text: string, emission: ExploreEmission): ToolResult { |
| 5988 | const result = this.textResult(text); |
| 5989 | result[EXPLORE_EMISSION_KEY] = emission; |
| 5990 | return result; |
| 5991 | } |
| 5992 | |
| 5993 | /** |
| 5994 | * Handle codegraph_node |
no test coverage detected