- eveai_chat_client update to have different ways of presenting ProgressTracker.vue. Based on progress_tracker_insights in Tenant Make Configuration.

This commit is contained in:
Josako
2025-07-22 21:27:39 +02:00
parent 32cf105d7b
commit e990fe65d8
7 changed files with 102 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
v-if="message.sender === 'ai' && message.taskId"
:task-id="message.taskId"
:api-prefix="apiPrefix"
:is-latest-ai-message="isLatestAiMessage"
class="message-progress"
@specialist-complete="handleSpecialistComplete"
@specialist-error="handleSpecialistError"
@@ -165,6 +166,10 @@ export default {
apiPrefix: {
type: String,
default: ''
},
isLatestAiMessage: {
type: Boolean,
default: false
}
},
emits: ['image-loaded', 'retry-message', 'specialist-complete', 'specialist-error'],