Spaces:
Running
Running
remove comments
Browse files
src/proxy_lite/solvers/simple_solver.py
CHANGED
@@ -82,7 +82,6 @@ class SimpleSolver(BaseSolver):
|
|
82 |
observation_content = observation_match.group(1).strip() if observation_match else ""
|
83 |
|
84 |
self.logger.info("🌐 [bold blue]Observation:[/]")
|
85 |
-
# await self.logger.stream_message(observation_content)
|
86 |
await self.logger.stream_message(observation_content)
|
87 |
|
88 |
# Extract text between thinking tags if present
|
@@ -90,7 +89,6 @@ class SimpleSolver(BaseSolver):
|
|
90 |
thinking_content = thinking_match.group(1).strip() if thinking_match else text_content
|
91 |
|
92 |
self.logger.info("🧠 [bold purple]Thinking:[/]")
|
93 |
-
# await self.logger.stream_message(thinking_content)
|
94 |
await self.logger.stream_message(thinking_content)
|
95 |
|
96 |
return Action(tool_calls=message.tool_calls, text=text_content)
|
|
|
82 |
observation_content = observation_match.group(1).strip() if observation_match else ""
|
83 |
|
84 |
self.logger.info("🌐 [bold blue]Observation:[/]")
|
|
|
85 |
await self.logger.stream_message(observation_content)
|
86 |
|
87 |
# Extract text between thinking tags if present
|
|
|
89 |
thinking_content = thinking_match.group(1).strip() if thinking_match else text_content
|
90 |
|
91 |
self.logger.info("🧠 [bold purple]Thinking:[/]")
|
|
|
92 |
await self.logger.stream_message(thinking_content)
|
93 |
|
94 |
return Action(tool_calls=message.tool_calls, text=text_content)
|