Skip to content

Commit 1229948

Browse files
committed
Remove debug print statement from parser method
1 parent 1f54153 commit 1229948

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

camel_database_agent/database/database_schema_parse.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def parse_ddl_record(self, text: str) -> List[DDLRecord]:
6262
)
6363
prompt += f"```sql\n{text}```\n"
6464
prompt += "Please output the summary information and SQL script in JSON format."
65-
print(prompt)
6665
response = self.parsing_agent.step(prompt, response_format=DDLRecordResponseFormat)
6766
ddl_record_response = DDLRecordResponseFormat.model_validate_json(response.msgs[0].content)
6867
return ddl_record_response.items

0 commit comments

Comments
 (0)