From e0e82ffd202ff6b898bc34639cb7f3a095e2f72c Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Mon, 29 Apr 2024 16:30:37 -0700 Subject: [PATCH] fix trailing spaces --- vision_agent/agent/agent_coder_prompts.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vision_agent/agent/agent_coder_prompts.py b/vision_agent/agent/agent_coder_prompts.py index d940b7c6..81c365fb 100644 --- a/vision_agent/agent/agent_coder_prompts.py +++ b/vision_agent/agent/agent_coder_prompts.py @@ -20,10 +20,10 @@ def execute(image_path: str): {feedback} **Instructions**: -1. **Understand and Clarify**: Make sure you understand the task. +1. **Understand and Clarify**: Make sure you understand the task. 2. **Algorithm/Method Selection**: Decide on the most efficient way. -3. **Pseudocode Creation**: Write down the steps you will follow in pseudocode. -4. **Code Generation**: Translate your pseudocode into executable Python code. +3. **Pseudocode Creation**: Write down the steps you will follow in pseudocode. +4. **Code Generation**: Translate your pseudocode into executable Python code. """ DEBUG = """ @@ -64,7 +64,7 @@ def execute(image_path: str): **Input Code Snippet**: -This is the code that +This is the code that ```python {code} ```