json-object-editor 0.10.654 → 0.10.660
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -1
- package/_www/mcp-test.html +287 -276
- package/css/joe-styles.css +6 -0
- package/css/joe.css +7 -1
- package/css/joe.min.css +1 -1
- package/docs/React_Form_Integration_Strategy.md +398 -0
- package/form-qs.json +1007 -0
- package/js/JsonObjectEditor.jquery.craydent.js +56 -12
- package/js/joe-ai.js +2275 -2052
- package/js/joe.js +57 -13
- package/js/joe.min.js +1 -1
- package/package.json +1 -1
- package/react-form-spa-ex.js +570 -0
- package/readme.md +34 -1
- package/server/fields/core.js +4 -1
- package/server/modules/MCP.js +1364 -1237
- package/server/modules/Sites.js +79 -0
- package/server/modules/Storage.js +28 -1
- package/server/plugins/chatgpt.js +1864 -1495
- package/server/schemas/ai_assistant.js +15 -1
- package/server/schemas/ai_prompt.js +389 -324
- package/server/schemas/ai_response.js +414 -374
- package/server/schemas/ai_widget_conversation.js +31 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
var schema = {
|
|
5
5
|
title: "Ai Assistant | ${name}",
|
|
6
|
-
display: "Ai
|
|
6
|
+
display: "Ai Assistant",
|
|
7
7
|
info: "An AI Assistant configuration linked to OpenAI, managed within Joe.",
|
|
8
8
|
// Curated summary for agents and tools
|
|
9
9
|
summary:{
|
|
@@ -329,6 +329,20 @@ var schema = {
|
|
|
329
329
|
display: "File IDs (auto populated on sync)",
|
|
330
330
|
comment: "Auto-managed list of OpenAI file_ids attached to this Assistant."
|
|
331
331
|
},
|
|
332
|
+
{
|
|
333
|
+
name:"assistant_files",
|
|
334
|
+
type:"uploader",
|
|
335
|
+
allowmultiple:true,
|
|
336
|
+
height:"220px",
|
|
337
|
+
display:"Assistant Files (uploaded)",
|
|
338
|
+
comment:"Drag files here to upload. Files will be mirrored to OpenAI (when configured) and attached whenever this assistant is used.",
|
|
339
|
+
onConfirm:_joe.SERVER.Plugins.awsConnect,
|
|
340
|
+
file_roles:[
|
|
341
|
+
{ value:"reference", label:"Reference" },
|
|
342
|
+
{ value:"instructions",label:"Instructions" },
|
|
343
|
+
{ value:"example", label:"Example", default:true }
|
|
344
|
+
]
|
|
345
|
+
},
|
|
332
346
|
{ section_end: "files" },
|
|
333
347
|
{section_start:'categorization',collapsed:true},
|
|
334
348
|
'datasets',
|