MaXoN654 commited on
Commit
1dafbe7
·
verified ·
1 Parent(s): efe1a62

model card: add SELECT-only limitation

Browse files
Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -162,6 +162,9 @@ print(sql)
162
 
163
  ## Limitations
164
 
 
 
 
165
  - **SQLite dialect only** — queries may not be valid PostgreSQL/MySQL without adaptation.
166
  - Schema and gold SQL are English; questions in other languages than Russian/English are untested.
167
  - 0.8B parameters: complex multi-join / nested queries remain challenging; verify results before use.
 
162
 
163
  ## Limitations
164
 
165
+ - **SELECT-only** — SynSQL-2.5M contains no DML/DDL, so the model was never trained on
166
+ INSERT/UPDATE/DELETE. Asked to modify data, it does not refuse — it silently reformulates
167
+ the request into a related SELECT. Do not use it to generate data-modifying queries.
168
  - **SQLite dialect only** — queries may not be valid PostgreSQL/MySQL without adaptation.
169
  - Schema and gold SQL are English; questions in other languages than Russian/English are untested.
170
  - 0.8B parameters: complex multi-join / nested queries remain challenging; verify results before use.