removedInput schema / $defs / TableFieldsInput
Removed value: -{
- "additionalProperties": false,
- "properties": {
- "database": {
- "description": "库名",
- "title": "Database",
- "type": "string"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- },
- "source_id": {
- "description": "数据源 ID",
- "title": "Source Id",
- "type": "string"
- },
- "table": {
- "description": "表名",
- "title": "Table",
- "type": "string"
- }
- },
- "required": [
- "source_id",
- "database",
- "table"
- ],
- "title": "TableFieldsInput",
- "type": "object"
-}
addedInput schema / properties / database
Added value: +{
+ "description": "库名",
+ "title": "Database",
+ "type": "string"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/TableFieldsInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
addedInput schema / properties / source_id
Added value: +{
+ "description": "数据源 ID",
+ "title": "Source Id",
+ "type": "string"
+}
addedInput schema / properties / table
Added value: +{
+ "description": "表名",
+ "title": "Table",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "source_id",
+ "database",
+ "table"
+]