diff --git a/backend/image_generation.py b/backend/image_generation.py index 8463ae6..b93792c 100644 --- a/backend/image_generation.py +++ b/backend/image_generation.py @@ -65,7 +65,6 @@ async def generate_images( code: str, api_key: str, base_url: Union[str, None], image_cache: Dict[str, str] ): # Find all images - print('code', code) soup = BeautifulSoup(code, "html.parser") images = soup.find_all("img") diff --git a/backend/llm.py b/backend/llm.py index 7b3c275..638ba18 100644 --- a/backend/llm.py +++ b/backend/llm.py @@ -89,7 +89,6 @@ async def stream_claude_response( # Translate OpenAI messages to Claude messages system_prompt = cast(str, messages[0].get("content")) claude_messages = [dict(message) for message in messages[1:]] - print(claude_messages) for message in claude_messages: if not isinstance(message["content"], list): continue diff --git a/backend/routes/generate_code.py b/backend/routes/generate_code.py index b5e4760..07b3089 100644 --- a/backend/routes/generate_code.py +++ b/backend/routes/generate_code.py @@ -32,8 +32,6 @@ router = APIRouter() def write_logs(prompt_messages: List[ChatCompletionMessageParam], completion: str): - print(prompt_messages) - print(completion) # Get the logs path from environment, default to the current working directory logs_path = os.environ.get("LOGS_PATH", os.getcwd())