()
| 11 | |
| 12 | type Role = 'assistant' | 'system' | 'tool'; |
| 13 | const handleClick = () => { |
| 14 | toast({ |
| 15 | title: 'Evals coming soon for Pro plan users!', |
| 16 | }); |
| 17 | }; |
| 18 | |
| 19 | export const Thread = ({ role = 'assistant' }: { role?: Role }) => { |
| 20 | return ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…