remove print statements

This commit is contained in:
Naman Dhingra 2024-06-11 12:36:41 +05:30
parent 46ed6e886b
commit 9714fd25c1

View File

@ -34,8 +34,6 @@ def assemble_imported_code_prompt(
result_image_data_url: Union[str, None] = None, result_image_data_url: Union[str, None] = None,
) -> List[ChatCompletionMessageParam]: ) -> List[ChatCompletionMessageParam]:
print('Tailwind config', tailwind_config)
system_content = IMPORTED_CODE_SYSTEM_PROMPTS[stack] system_content = IMPORTED_CODE_SYSTEM_PROMPTS[stack]
user_content: List[ChatCompletionContentPartParam] = [ user_content: List[ChatCompletionContentPartParam] = [
@ -78,8 +76,6 @@ def assemble_prompt(
result_image_data_url: Union[str, None] = None, result_image_data_url: Union[str, None] = None,
) -> List[ChatCompletionMessageParam]: ) -> List[ChatCompletionMessageParam]:
print('Tailwind config', tailwind_config)
system_content = SYSTEM_PROMPTS[stack] system_content = SYSTEM_PROMPTS[stack]
user_prompt = USER_PROMPT if stack != "svg" else SVG_USER_PROMPT user_prompt = USER_PROMPT if stack != "svg" else SVG_USER_PROMPT