Skip to content

Commit bdc41ba

Browse files
authored
Merge pull request #15 from peoray/feature/chain-of-thought
feat: add chain-of-thought component
2 parents ff0f95f + 743c63b commit bdc41ba

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'
@@ -36,6 +37,7 @@ const components = [
3637
{ name: 'OpenInChat', Component: OpenInChat },
3738
{ name: 'Loader', Component: Loader },
3839
{ name: 'Sources', Component: Sources },
40+
{ name: 'ChainOfThought', Component: ChainOfThought },
3941
{ name: 'Queue', Component: Queue },
4042
{ name: 'Plan', Component: Plan },
4143
]

0 commit comments

Comments
 (0)