jan/web/screens/Settings/Engines/RemoteEngineItem.tsx
Faisal Amir 2a0601f75a
feat: remote engine management (#4364)
* feat: remote engine management

* chore: fix linter issue

* chore: remove unused imports

* fix: populate engines, models and legacy settings (#4403)

* fix: populate engines, models and legacy settings

* chore: legacy logics update configured remote engine

* fix: check exist path before reading

* fix: engines and models persist - race condition

* chore: update issue state

* test: update test cases

* chore: bring back Cortex extension settings

* chore: setup button gear / plus based apikey

* chore: fix remote engine from welcome screen

* chore: resolve linter issue

* chore: support request headers template

* chore: update engines using header_template instead of api_key_template

* chore: update models on changes

* fix: anthropic response template

* chore: fix welcome screen and debounce update value input

* chore: update engines list on changes

* chore: update engines list on change

* chore: update desc form add modal remote engines

* chore: bump cortex version to latest RC

* chore: fix linter

* fix: transform payload of Anthropic and OpenAI

* fix: typo

* fix: openrouter model id for auto routing

* chore: remove remote engine URL setting

* chore: add cohere engine and model support

* fix: should not clean on app launch - models list display issue

* fix: local engine check logic

* chore: bump app version to latest release 0.5.13

* test: fix failed tests

---------

Co-authored-by: Louis <louis@jan.ai>
2025-01-14 17:29:56 +07:00

81 lines
2.6 KiB
TypeScript

import React, { useCallback } from 'react'
import { EngineConfig, InferenceEngine } from '@janhq/core'
import { Button, Switch } from '@janhq/joi'
import { useAtom, useSetAtom } from 'jotai'
import { SettingsIcon } from 'lucide-react'
import { getTitleByEngine } from '@/utils/modelEngine'
import { showSettingActiveRemoteEngineAtom } from '@/helpers/atoms/Extension.atom'
import { selectedSettingAtom } from '@/helpers/atoms/Setting.atom'
const RemoteEngineItems = ({
engine,
}: {
engine: InferenceEngine
values: EngineConfig[]
}) => {
const setSelectedSetting = useSetAtom(selectedSettingAtom)
const [showSettingActiveRemoteEngine, setShowSettingActiveRemoteEngineAtom] =
useAtom(showSettingActiveRemoteEngineAtom)
const onSwitchChange = useCallback(
(name: string) => {
if (showSettingActiveRemoteEngine.includes(name)) {
setShowSettingActiveRemoteEngineAtom(
[...showSettingActiveRemoteEngine].filter((x) => x !== name)
)
} else {
setShowSettingActiveRemoteEngineAtom([
...showSettingActiveRemoteEngine,
name,
])
}
},
[showSettingActiveRemoteEngine, setShowSettingActiveRemoteEngineAtom]
)
return (
<div className="flex w-full flex-col items-start justify-between border-b border-[hsla(var(--app-border))] py-3 sm:flex-row">
<div className="w-full flex-shrink-0 space-y-1.5">
<div className="flex items-center justify-between gap-x-2">
<div>
<div className="flex items-center gap-2">
<h6 className="line-clamp-1 font-semibold capitalize">
{getTitleByEngine(engine as InferenceEngine)}
</h6>
</div>
<div className="mt-2 w-full font-medium leading-relaxed text-[hsla(var(--text-secondary))]">
<p>
Access models from {getTitleByEngine(engine as InferenceEngine)}{' '}
via their API
</p>
</div>
</div>
<div className="flex items-center gap-x-3">
<Switch
checked={!showSettingActiveRemoteEngine.includes(engine)}
onChange={() => onSwitchChange(engine)}
/>
<Button
theme="icon"
variant="outline"
onClick={() => setSelectedSetting(engine)}
>
<SettingsIcon
size={14}
className="text-[hsla(var(--text-secondary))]"
/>
</Button>
</div>
</div>
</div>
</div>
)
}
export default RemoteEngineItems