Skip to content

Commit c4dfb8f

Browse files
committed
feat: add chain-of-thought component
1 parent f1fc8a8 commit c4dfb8f

File tree

19 files changed

+994
-0
lines changed

19 files changed

+994
-0
lines changed

apps/test/app/examples/chain-of-thought.vue

Lines changed: 98 additions & 0 deletions
Large diffs are not rendered by default.

apps/test/app/examples/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export { default as ActionsHover } from './actions-hover.vue'
22
export { default as Actions } from './actions.vue'
33
export { default as Branch } from './branch.vue'
4+
export { default as ChainOfThought } from './chain-of-thought.vue'
45
export { default as CodeBlock } from './code-block.vue'
56
export { default as Conversation } from './conversation.vue'
67
export { default as Image } from './image.vue'

apps/test/app/pages/index.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Card, CardContent, CardHeader, CardTitle } from '@repo/shadcn-vue/compo
33
import ActionsHover from '~/examples/actions-hover.vue'
44
import Actions from '~/examples/actions.vue'
55
import Branch from '~/examples/branch.vue'
6+
import ChainOfThought from '~/examples/chain-of-thought.vue'
67
import CodeBlock from '~/examples/code-block.vue'
78
import Conversation from '~/examples/conversation.vue'
89
import Image from '~/examples/image.vue'
@@ -34,6 +35,7 @@ const components = [
3435
{ name: 'OpenInChat', Component: OpenInChat },
3536
{ name: 'Loader', Component: Loader },
3637
{ name: 'Sources', Component: Sources },
38+
{ name: 'ChainOfThought', Component: ChainOfThought },
3739
]
3840
</script>
3941

0 commit comments

Comments
 (0)