Update e2bqwen.py
Browse files- e2bqwen.py +1 -2
e2bqwen.py
CHANGED
|
@@ -215,7 +215,6 @@ class E2BVisionAgent(CodeAgent):
|
|
| 215 |
self.step_callbacks.append(self.take_screenshot_callback)
|
| 216 |
|
| 217 |
def initialize_system_prompt(self) -> str:
|
| 218 |
-
print("v2 PROMPT TEMPLATE:", self.prompt_templates["system_prompt"])
|
| 219 |
system_prompt = populate_template(
|
| 220 |
self.prompt_templates["system_prompt"],
|
| 221 |
variables={
|
|
@@ -229,7 +228,7 @@ class E2BVisionAgent(CodeAgent):
|
|
| 229 |
},
|
| 230 |
)
|
| 231 |
assert system_prompt != self.prompt_templates["system_prompt"], "Populating prompt template failed"
|
| 232 |
-
print("
|
| 233 |
return system_prompt
|
| 234 |
|
| 235 |
def _setup_desktop_tools(self):
|
|
|
|
| 215 |
self.step_callbacks.append(self.take_screenshot_callback)
|
| 216 |
|
| 217 |
def initialize_system_prompt(self) -> str:
|
|
|
|
| 218 |
system_prompt = populate_template(
|
| 219 |
self.prompt_templates["system_prompt"],
|
| 220 |
variables={
|
|
|
|
| 228 |
},
|
| 229 |
)
|
| 230 |
assert system_prompt != self.prompt_templates["system_prompt"], "Populating prompt template failed"
|
| 231 |
+
print("TRUE PROMPT:", system_prompt)
|
| 232 |
return system_prompt
|
| 233 |
|
| 234 |
def _setup_desktop_tools(self):
|