Merged PR 157: Update Dashboard

This commit is contained in:
2025-06-10 14:32:12 +00:00
6 changed files with 3165 additions and 3502 deletions

5120
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -19,7 +19,7 @@
"@vue-flow/minimap": "^1.5.0", "@vue-flow/minimap": "^1.5.0",
"@websanova/vue-auth": "^4.2.1", "@websanova/vue-auth": "^4.2.1",
"axios": "^1.7.2", "axios": "^1.7.2",
"chart.js": "3.3.2", "chart.js": "^4.4.9",
"Hermione": "file:", "Hermione": "file:",
"highlight.js": "^11.10.0", "highlight.js": "^11.10.0",
"json-editor-vue": "^0.15.1", "json-editor-vue": "^0.15.1",
@@ -30,12 +30,13 @@
"oidc-client": "^1.11.5", "oidc-client": "^1.11.5",
"pinia": "^2.2.4", "pinia": "^2.2.4",
"primeicons": "^6.0.1", "primeicons": "^6.0.1",
"primevue": "^4.0.0", "primevue": "^4.3.5",
"quill": "^1.3.7", "quill": "^1.3.7",
"showdown": "^2.1.0", "showdown": "^2.1.0",
"v-code-diff": "^1.13.1", "v-code-diff": "^1.13.1",
"vue": "^3.4.34", "vue": "^3.4.34",
"vue-authenticate-2": "^2.2.0", "vue-authenticate-2": "^2.2.0",
"vue-chartjs": "5.3.2",
"vue-highlight-code": "^0.2.0", "vue-highlight-code": "^0.2.0",
"vue-markdown-render": "^2.2.1", "vue-markdown-render": "^2.2.1",
"vue-router": "^4.4.0", "vue-router": "^4.4.0",

View File

@@ -52,7 +52,7 @@ var auth = createAuth({
} }
}); });
axios.defaults.baseURL = import.meta.env.VITE_BACKEND_URL; axios.defaults.baseURL = import.meta.env.VITE_BACKEND_URL;
//axios.defaults.baseURL ='http://localhost:8081'; //axios.defaults.baseURL ='http://localhost:8081';

View File

@@ -41,7 +41,7 @@ const router = createRouter({
component: () => import('@/views/pages/OldScenarioExec.vue') component: () => import('@/views/pages/OldScenarioExec.vue')
}, },
{ {
path: 'dashboard', path: '/dashboard',
name: 'dashboard', name: 'dashboard',
component: () => import('@/views/pages/DashExecution.vue') component: () => import('@/views/pages/DashExecution.vue')
}, },

View File

@@ -161,6 +161,6 @@ export const DashboardScenarioStore = defineStore('dashboard_scenario_store', ()
totalTokens, totalTokens,
loadExecutionsStats, loadExecutionsStats,
loadChatStats, loadChatStats,
chatStats
} }
}) })

File diff suppressed because it is too large Load Diff