voidisopenyt commited on
Commit
2bd76bd
·
verified ·
1 Parent(s): 12c7772

and there should be a dataset type "ai database generation

Browse files
Files changed (1) hide show
  1. index.html +5 -3
index.html CHANGED
@@ -140,8 +140,9 @@
140
  <option value="conversational">Conversational</option>
141
  <option value="qna">Q&A</option>
142
  <option value="code">Code Examples</option>
 
143
  </select>
144
- </div>
145
  <div class="form-group">
146
  <label class="block text-sm font-medium text-gray-700 mb-1">Prompt:</label>
147
  <textarea id="dataset-prompt" rows="4" class="focus:ring-indigo-500 focus:border-indigo-500"
@@ -340,8 +341,9 @@ const btn = this;
340
  `Provide Python code for training this dataset in a structured format.\n` +
341
  `Include all necessary files structure.\n` +
342
  `Output should be in JSON format with files and content.\n` +
343
- `Example format: {"files": {"train.py": "python code...", "dataset.json": "json content..."}}`
344
- }]
 
345
  }]
346
  })
347
  });
 
140
  <option value="conversational">Conversational</option>
141
  <option value="qna">Q&A</option>
142
  <option value="code">Code Examples</option>
143
+ <option value="database">AI Database</option>
144
  </select>
145
+ </div>
146
  <div class="form-group">
147
  <label class="block text-sm font-medium text-gray-700 mb-1">Prompt:</label>
148
  <textarea id="dataset-prompt" rows="4" class="focus:ring-indigo-500 focus:border-indigo-500"
 
341
  `Provide Python code for training this dataset in a structured format.\n` +
342
  `Include all necessary files structure.\n` +
343
  `Output should be in JSON format with files and content.\n` +
344
+ `For AI Database type, include SQL schema, sample queries and data generation scripts.\n` +
345
+ `Example format: {"files": {"train.py": "python code...", "dataset.json": "json content...", "schema.sql": "SQL schema..."}}`
346
+ }]
347
  }]
348
  })
349
  });