* chore: expose fs apis * chore: correct electron import path * update download api Signed-off-by: James <james@jan.ai> * update chat_completion Signed-off-by: James <james@jan.ai> * fix electron import Signed-off-by: James <james@jan.ai> * feat: adding API support at 1337 (#991) Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> * feat: Add /chat/completion api and handler * chore: add todo for modelList * chore: read engine.json for openai chat_completion (#1030) Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> * refactor: move routes to shared node module * refactor: exported modules from core with types (#1172) * refactor: exported modules from core with types * fix: fix file reading args * refactor: fileManager handles * fix: app issues with server refactoring * refactor: shared server module (#1210) * chore: resolve main * chore: update makefile --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: NamH <NamNh0122@gmail.com> Co-authored-by: hiro <vuonghoainam.work@gmail.com>
229 lines
7.0 KiB
TypeScript
229 lines
7.0 KiB
TypeScript
import React from 'react'
|
|
|
|
import { getUserSpace, openFileExplorer, joinPath } from '@janhq/core'
|
|
|
|
import { Input, Textarea } from '@janhq/uikit'
|
|
|
|
import { atom, useAtomValue } from 'jotai'
|
|
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
import LogoMark from '@/containers/Brand/Logo/Mark'
|
|
import CardSidebar from '@/containers/CardSidebar'
|
|
import DropdownListSidebar, {
|
|
selectedModelAtom,
|
|
} from '@/containers/DropdownListSidebar'
|
|
|
|
import { useCreateNewThread } from '@/hooks/useCreateNewThread'
|
|
|
|
import { toSettingParams } from '@/utils/model_param'
|
|
|
|
import EngineSetting from '../EngineSetting'
|
|
import ModelSetting from '../ModelSetting'
|
|
|
|
import {
|
|
activeThreadAtom,
|
|
getActiveThreadModelParamsAtom,
|
|
threadStatesAtom,
|
|
} from '@/helpers/atoms/Thread.atom'
|
|
|
|
export const showRightSideBarAtom = atom<boolean>(true)
|
|
|
|
const Sidebar: React.FC = () => {
|
|
const showing = useAtomValue(showRightSideBarAtom)
|
|
const activeThread = useAtomValue(activeThreadAtom)
|
|
const selectedModel = useAtomValue(selectedModelAtom)
|
|
const { updateThreadMetadata } = useCreateNewThread()
|
|
const threadStates = useAtomValue(threadStatesAtom)
|
|
|
|
const activeModelParams = useAtomValue(getActiveThreadModelParamsAtom)
|
|
const modelSettingParams = toSettingParams(activeModelParams)
|
|
|
|
const onReviewInFinderClick = async (type: string) => {
|
|
if (!activeThread) return
|
|
const activeThreadState = threadStates[activeThread.id]
|
|
if (!activeThreadState.isFinishInit) {
|
|
alert('Thread is not started yet')
|
|
return
|
|
}
|
|
|
|
const userSpace = await getUserSpace()
|
|
let filePath = undefined
|
|
const assistantId = activeThread.assistants[0]?.assistant_id
|
|
switch (type) {
|
|
case 'Engine':
|
|
case 'Thread':
|
|
filePath = await joinPath(['threads', activeThread.id])
|
|
break
|
|
case 'Model':
|
|
if (!selectedModel) return
|
|
filePath = await joinPath(['models', selectedModel.id])
|
|
break
|
|
case 'Assistant':
|
|
if (!assistantId) return
|
|
filePath = await joinPath(['assistants', assistantId])
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
|
|
if (!filePath) return
|
|
const fullPath = await joinPath([userSpace, filePath])
|
|
openFileExplorer(fullPath)
|
|
}
|
|
|
|
const onViewJsonClick = async (type: string) => {
|
|
if (!activeThread) return
|
|
const activeThreadState = threadStates[activeThread.id]
|
|
if (!activeThreadState.isFinishInit) {
|
|
alert('Thread is not started yet')
|
|
return
|
|
}
|
|
|
|
const userSpace = await getUserSpace()
|
|
let filePath = undefined
|
|
const assistantId = activeThread.assistants[0]?.assistant_id
|
|
switch (type) {
|
|
case 'Engine':
|
|
case 'Thread':
|
|
filePath = await joinPath(['threads', activeThread.id, 'thread.json'])
|
|
break
|
|
case 'Model':
|
|
if (!selectedModel) return
|
|
filePath = await joinPath(['models', selectedModel.id, 'model.json'])
|
|
break
|
|
case 'Assistant':
|
|
if (!assistantId) return
|
|
filePath = await joinPath(['assistants', assistantId, 'assistant.json'])
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
|
|
if (!filePath) return
|
|
const fullPath = await joinPath([userSpace, filePath])
|
|
openFileExplorer(fullPath)
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={twMerge(
|
|
'h-full flex-shrink-0 overflow-x-hidden border-l border-border bg-background transition-all duration-100 dark:bg-background/20',
|
|
showing
|
|
? 'w-80 translate-x-0 opacity-100'
|
|
: 'w-0 translate-x-full opacity-0'
|
|
)}
|
|
>
|
|
<div
|
|
className={twMerge(
|
|
'flex flex-col gap-4 p-4 delay-200',
|
|
showing ? 'animate-enter opacity-100' : 'opacity-0'
|
|
)}
|
|
>
|
|
<CardSidebar
|
|
title="Thread"
|
|
onRevealInFinderClick={onReviewInFinderClick}
|
|
onViewJsonClick={onViewJsonClick}
|
|
>
|
|
<div className="flex flex-col space-y-4 p-2">
|
|
<div>
|
|
<label
|
|
id="thread-title"
|
|
className="mb-2 inline-block font-bold text-gray-600 dark:text-gray-300"
|
|
>
|
|
Title
|
|
</label>
|
|
<Input
|
|
id="thread-title"
|
|
value={activeThread?.title}
|
|
onChange={(e) => {
|
|
if (activeThread)
|
|
updateThreadMetadata({
|
|
...activeThread,
|
|
title: e.target.value || '',
|
|
})
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className="flex flex-col">
|
|
<label
|
|
id="thread-title"
|
|
className="mb-2 inline-block font-bold text-gray-600 dark:text-gray-300"
|
|
>
|
|
Threads ID
|
|
</label>
|
|
<span className="text-xs text-muted-foreground">
|
|
{activeThread?.id || '-'}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</CardSidebar>
|
|
<CardSidebar
|
|
title="Assistant"
|
|
onRevealInFinderClick={onReviewInFinderClick}
|
|
onViewJsonClick={onViewJsonClick}
|
|
>
|
|
<div className="flex flex-col space-y-4 p-2">
|
|
<div className="flex items-center space-x-2">
|
|
<LogoMark width={24} height={24} />
|
|
<span className="font-bold capitalize">
|
|
{activeThread?.assistants[0].assistant_name ?? '-'}
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<label
|
|
id="thread-title"
|
|
className="mb-2 inline-block font-bold text-gray-600 dark:text-gray-300"
|
|
>
|
|
Instructions
|
|
</label>
|
|
<Textarea
|
|
id="assistant-instructions"
|
|
placeholder="Eg. You are a helpful assistant."
|
|
value={activeThread?.assistants[0].instructions ?? ''}
|
|
onChange={(e) => {
|
|
if (activeThread)
|
|
updateThreadMetadata({
|
|
...activeThread,
|
|
assistants: [
|
|
{
|
|
...activeThread.assistants[0],
|
|
instructions: e.target.value || '',
|
|
},
|
|
],
|
|
})
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</CardSidebar>
|
|
{Object.keys(modelSettingParams).length ? (
|
|
<CardSidebar
|
|
title="Engine"
|
|
onRevealInFinderClick={onReviewInFinderClick}
|
|
onViewJsonClick={onViewJsonClick}
|
|
>
|
|
<div className="p-2">
|
|
<EngineSetting />
|
|
</div>
|
|
</CardSidebar>
|
|
) : null}
|
|
<CardSidebar
|
|
title="Model"
|
|
onRevealInFinderClick={onReviewInFinderClick}
|
|
onViewJsonClick={onViewJsonClick}
|
|
>
|
|
<div className="p-2">
|
|
<DropdownListSidebar />
|
|
<div className="mt-4">
|
|
<ModelSetting />
|
|
</div>
|
|
</div>
|
|
</CardSidebar>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Sidebar)
|