- Change TRAICIE_VACANCY_DEFINTION_SPECIALIST to TRAICIE_ROLE_DEFINITION_SPECIALIST

- Introduce new vanilla-jsoneditor iso older jsoneditor (for viewing a.o. ChatSessions)
- Introduce use of npm to install required javascript libraries
- update Material-kit-pro
- Introduce new top bar to show session defaults, remove old navbar buttons
- Correct Task & Tools editor
This commit is contained in:
Josako
2025-05-27 17:37:32 +02:00
parent 1fdbd2ff45
commit 5123de55cc
1041 changed files with 4480 additions and 292099 deletions

View File

@@ -337,6 +337,7 @@ def edit_agent(agent_id):
title="Edit Agent",
description="Configure the agent with company-specific details if required",
submit_text="Save Agent")
return None
@interaction_bp.route('/agent/<int:agent_id>/save', methods=['POST'])
@@ -372,7 +373,12 @@ def edit_task(task_id):
if request.headers.get('X-Requested-With') == 'XMLHttpRequest':
return render_template('interaction/components/edit_task.html',
form=form,
task=task)
task=task,
title="Edit Task",
description="Configure the task with company-specific details if required",
submit_text="Save Task"
)
return None
@interaction_bp.route('/task/<int:task_id>/save', methods=['POST'])
@@ -406,7 +412,13 @@ def edit_tool(tool_id):
form = EditEveAIToolForm(obj=tool)
if request.headers.get('X-Requested-With') == 'XMLHttpRequest':
return render_template('interaction/components/edit_tool.html', form=form, tool=tool)
return render_template('interaction/components/edit_tool.html',
form=form,
tool=tool,
title="Edit Tool",
description="Configure the tool with company-specific details if required",
submit_text="Save Tool"
)
return None