Implement preview token for oss (#23)
This commit is contained in:
commit
36a1861d01
3 changed files with 93 additions and 20 deletions
|
|
@ -7,22 +7,41 @@ import { ChatList } from '@/components/chat-list'
|
|||
import { ChatPanel } from '@/components/chat-panel'
|
||||
import { EmptyScreen } from '@/components/empty-screen'
|
||||
import { ChatScrollAnchor } from '@/components/chat-scroll-anchor'
|
||||
import { useLocalStorage } from '@/lib/hooks/use-local-storage'
|
||||
import {
|
||||
Dialog,
|
||||
DialogContent,
|
||||
DialogDescription,
|
||||
DialogFooter,
|
||||
DialogHeader,
|
||||
DialogTitle
|
||||
} from '@/components/ui/dialog'
|
||||
import { useState } from 'react'
|
||||
import { Button } from './ui/button'
|
||||
import { Input } from './ui/input'
|
||||
|
||||
const IS_PREVIEW = process.env.VERCEL_ENV === 'preview'
|
||||
export interface ChatProps extends React.ComponentProps<'div'> {
|
||||
initialMessages?: Message[]
|
||||
id?: string
|
||||
}
|
||||
|
||||
export function Chat({ id, initialMessages, className }: ChatProps) {
|
||||
const [previewToken, setPreviewToken] = useLocalStorage<string | null>(
|
||||
'ai-token',
|
||||
null
|
||||
)
|
||||
const [previewTokenDialog, setPreviewTokenDialog] = useState(IS_PREVIEW)
|
||||
const [previewTokenInput, setPreviewTokenInput] = useState(previewToken ?? '')
|
||||
const { messages, append, reload, stop, isLoading, input, setInput } =
|
||||
useChat({
|
||||
initialMessages,
|
||||
id,
|
||||
body: {
|
||||
id
|
||||
id,
|
||||
previewToken
|
||||
}
|
||||
})
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={cn('pb-[200px] pt-4 md:pt-10', className)}>
|
||||
|
|
@ -45,6 +64,42 @@ export function Chat({ id, initialMessages, className }: ChatProps) {
|
|||
input={input}
|
||||
setInput={setInput}
|
||||
/>
|
||||
|
||||
<Dialog open={previewTokenDialog} onOpenChange={setPreviewTokenDialog}>
|
||||
<DialogContent>
|
||||
<DialogHeader>
|
||||
<DialogTitle>Enter your OpenAI Key</DialogTitle>
|
||||
<DialogDescription>
|
||||
If you have not obtained your OpenAI API key, you can do so by{' '}
|
||||
<a
|
||||
href="https://platform.openai.com/signup/"
|
||||
className="underline"
|
||||
>
|
||||
signing up
|
||||
</a>{' '}
|
||||
on the OpenAI website. This is only necessary for preview
|
||||
environments so that the open source community can test the app.
|
||||
The token will be saved to your browser's local storage under
|
||||
the name <code className="font-mono">ai-token</code>.
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
<Input
|
||||
value={previewTokenInput}
|
||||
placeholder="OpenAI API key"
|
||||
onChange={e => setPreviewTokenInput(e.target.value)}
|
||||
/>
|
||||
<DialogFooter className="items-center">
|
||||
<Button
|
||||
onClick={() => {
|
||||
setPreviewToken(previewTokenInput)
|
||||
setPreviewTokenDialog(false)
|
||||
}}
|
||||
>
|
||||
Save Token
|
||||
</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue