mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
e70482dfc0
Co-authored-by: jyong <718720800@qq.com>
26 lines
550 B
TypeScript
26 lines
550 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import Iteration from './iteration'
|
|
import type { AgentIteration } from '@/models/log'
|
|
|
|
type TracingPanelProps = {
|
|
list: AgentIteration[]
|
|
}
|
|
|
|
const TracingPanel: FC<TracingPanelProps> = ({ list }) => {
|
|
return (
|
|
<div className='bg-gray-50'>
|
|
{list.map((iteration, index) => (
|
|
<Iteration
|
|
key={index}
|
|
index={index + 1}
|
|
isFinal={index + 1 === list.length}
|
|
iterationInfo={iteration}
|
|
/>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default TracingPanel
|