Skip to content

Commit e1f0430

Browse files
committed
Update docstrings in schema.py for clarity on parsing methods
1 parent 55a4750 commit e1f0430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

camel_database_agent/database/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(
6363

6464
@timing
6565
def parse_ddl_record(self, text: str) -> SchemaParseResponse:
66-
"""Parsing DDL SQL statements"""
66+
"""Parsing DDL Schema"""
6767
prompt = (
6868
"Translate the following information into a JSON array format, "
6969
"with each JSON object in the array containing three "
@@ -98,7 +98,7 @@ def parse_ddl_record(self, text: str) -> SchemaParseResponse:
9898

9999
@timing
100100
def parse_dml_record(self, text: str) -> SchemaParseResponse:
101-
"""Parsing DML SQL statements"""
101+
"""Parsing Sampled Data"""
102102
prompt = (
103103
"Translate the following information into a JSON array format, "
104104
"with each JSON object in the array containing three "

0 commit comments

Comments
 (0)