You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Enter values as JSON array of arrays (e.g., [["A1", "B1"], ["A2", "B2"]]) or an array of objects (e.g., [{"name":"John", "age":30}, {"name":"Jane", "age":25}])',
96
123
condition: {field: 'operation',value: 'write'},
97
124
required: true,
125
+
wandConfig: {
126
+
enabled: true,
127
+
prompt: `Generate Microsoft Excel data as a JSON array based on the user's description.
128
+
129
+
Format options:
130
+
1. Array of arrays: [["Header1", "Header2"], ["Value1", "Value2"]]
131
+
2. Array of objects: [{"column1": "value1", "column2": "value2"}]
132
+
133
+
Examples:
134
+
- "sales data with product and revenue columns" -> [["Product", "Revenue"], ["Widget A", 1500], ["Widget B", 2300]]
135
+
- "list of employees with name and email" -> [{"name": "John Doe", "email": "[email protected]"}, {"name": "Jane Smith", "email": "[email protected]"}]
136
+
137
+
Return ONLY the JSON array - no explanations, no markdown, no extra text.`,
138
+
placeholder: 'Describe the data you want to write...',
'Enter values as JSON array of arrays (e.g., [["A1", "B1"], ["A2", "B2"]]) or an array of objects (e.g., [{"name":"John", "age":30}, {"name":"Jane", "age":25}])',
115
158
condition: {field: 'operation',value: 'update'},
116
159
required: true,
160
+
wandConfig: {
161
+
enabled: true,
162
+
prompt: `Generate Microsoft Excel data as a JSON array based on the user's description.
163
+
164
+
Format options:
165
+
1. Array of arrays: [["Header1", "Header2"], ["Value1", "Value2"]]
166
+
2. Array of objects: [{"column1": "value1", "column2": "value2"}]
167
+
168
+
Examples:
169
+
- "update with new prices" -> [["Product", "Price"], ["Widget A", 29.99], ["Widget B", 49.99]]
'Enter values as JSON array of arrays (e.g., [["A1", "B1"], ["A2", "B2"]]) or an array of objects (e.g., [{"name":"John", "age":30}, {"name":"Jane", "age":25}])',
0 commit comments