@adminforth/agent 1.26.1 → 1.26.2
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/build.log +2 -2
- package/custom/conversation_area/ProcessingTimeline.vue +1 -1
- package/custom/conversation_area/ReasoningRenderer.vue +1 -5
- package/dist/custom/conversation_area/ProcessingTimeline.vue +1 -1
- package/dist/custom/conversation_area/ReasoningRenderer.vue +1 -5
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -38,5 +38,5 @@ custom/skills/fetch_data/SKILL.md
|
|
|
38
38
|
custom/skills/mutate_data/
|
|
39
39
|
custom/skills/mutate_data/SKILL.md
|
|
40
40
|
|
|
41
|
-
sent 206,
|
|
42
|
-
total size is 203,
|
|
41
|
+
sent 206,064 bytes received 562 bytes 413,252.00 bytes/sec
|
|
42
|
+
total size is 203,750 speedup is 0.99
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
:wrapperStyle="{
|
|
22
22
|
marginRight: '8rem',
|
|
23
23
|
}"
|
|
24
|
-
:enabled="
|
|
24
|
+
:enabled="isStreaming"
|
|
25
25
|
>
|
|
26
26
|
<IncremarkContent
|
|
27
27
|
:content="reasoningText"
|
|
@@ -38,19 +38,15 @@ import type { IPart } from '../types';
|
|
|
38
38
|
import { ref, computed, watch, defineAsyncComponent } from 'vue';
|
|
39
39
|
import ThreeDotsAnimation from './ThreeDotsAnimation.vue';
|
|
40
40
|
import { extractTitleAndTextFromReasoning } from '../utils';
|
|
41
|
-
import { useAgentStore } from '../composables/useAgentStore';
|
|
42
41
|
import CustomAutoScrollContainer from '../CustomAutoScrollContainer.vue';
|
|
43
42
|
|
|
44
43
|
const IncremarkContent = defineAsyncComponent(() => import('@incremark/vue').then(module => module.IncremarkContent))
|
|
45
|
-
// const AutoScrollContainer = defineAsyncComponent(() => import('@incremark/vue').then(module => module.AutoScrollContainer))
|
|
46
44
|
|
|
47
45
|
const props = defineProps<{
|
|
48
46
|
state?: IPart['state']
|
|
49
47
|
text?: string
|
|
50
48
|
}>();
|
|
51
49
|
|
|
52
|
-
const agentStore = useAgentStore();
|
|
53
|
-
|
|
54
50
|
const isStreaming = computed(() => props.state === 'streaming');
|
|
55
51
|
const isExpanded = ref(true);
|
|
56
52
|
const parsedReasoning = computed(() => extractTitleAndTextFromReasoning(props.text ?? ''));
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
:wrapperStyle="{
|
|
22
22
|
marginRight: '8rem',
|
|
23
23
|
}"
|
|
24
|
-
:enabled="
|
|
24
|
+
:enabled="isStreaming"
|
|
25
25
|
>
|
|
26
26
|
<IncremarkContent
|
|
27
27
|
:content="reasoningText"
|
|
@@ -38,19 +38,15 @@ import type { IPart } from '../types';
|
|
|
38
38
|
import { ref, computed, watch, defineAsyncComponent } from 'vue';
|
|
39
39
|
import ThreeDotsAnimation from './ThreeDotsAnimation.vue';
|
|
40
40
|
import { extractTitleAndTextFromReasoning } from '../utils';
|
|
41
|
-
import { useAgentStore } from '../composables/useAgentStore';
|
|
42
41
|
import CustomAutoScrollContainer from '../CustomAutoScrollContainer.vue';
|
|
43
42
|
|
|
44
43
|
const IncremarkContent = defineAsyncComponent(() => import('@incremark/vue').then(module => module.IncremarkContent))
|
|
45
|
-
// const AutoScrollContainer = defineAsyncComponent(() => import('@incremark/vue').then(module => module.AutoScrollContainer))
|
|
46
44
|
|
|
47
45
|
const props = defineProps<{
|
|
48
46
|
state?: IPart['state']
|
|
49
47
|
text?: string
|
|
50
48
|
}>();
|
|
51
49
|
|
|
52
|
-
const agentStore = useAgentStore();
|
|
53
|
-
|
|
54
50
|
const isStreaming = computed(() => props.state === 'streaming');
|
|
55
51
|
const isExpanded = ref(true);
|
|
56
52
|
const parsedReasoning = computed(() => extractTitleAndTextFromReasoning(props.text ?? ''));
|