Delete unused files and update API calls
This commit is contained in:
parent
e0c2c0c745
commit
0351beeaae
90
src/components/Layouts/SettingsOptionLayout.tsx
Normal file
90
src/components/Layouts/SettingsOptionLayout.tsx
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
import {
|
||||||
|
Book,
|
||||||
|
BrainCircuit,
|
||||||
|
CircuitBoardIcon,
|
||||||
|
Orbit
|
||||||
|
} from "lucide-react"
|
||||||
|
import { Link, useLocation } from "react-router-dom"
|
||||||
|
|
||||||
|
function classNames(...classes: string[]) {
|
||||||
|
return classes.filter(Boolean).join(" ")
|
||||||
|
}
|
||||||
|
|
||||||
|
const LinkComponent = (item: {
|
||||||
|
href: string
|
||||||
|
name: string
|
||||||
|
icon: any
|
||||||
|
current: string
|
||||||
|
}) => {
|
||||||
|
return (
|
||||||
|
<li>
|
||||||
|
<Link
|
||||||
|
to={item.href}
|
||||||
|
className={classNames(
|
||||||
|
item.current === item.href
|
||||||
|
? "bg-gray-100 text-indigo-600 dark:bg-[#262626] dark:text-white"
|
||||||
|
: "text-gray-700 hover:text-indigo-600 hover:bg-gray-100 dark:text-gray-200 dark:hover:text-white dark:hover:bg-[#262626]",
|
||||||
|
"group flex gap-x-3 rounded-md py-2 pl-2 pr-3 text-sm leading-6 font-semibold"
|
||||||
|
)}>
|
||||||
|
<item.icon
|
||||||
|
className={classNames(
|
||||||
|
item.current === item.href
|
||||||
|
? "text-indigo-600 dark:text-white"
|
||||||
|
: "text-gray-400 group-hover:text-indigo-600 dark:text-gray-200 dark:group-hover:text-white",
|
||||||
|
"h-6 w-6 shrink-0"
|
||||||
|
)}
|
||||||
|
aria-hidden="true"
|
||||||
|
/>
|
||||||
|
{item.name}
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SettingsLayout = ({ children }: { children: React.ReactNode }) => {
|
||||||
|
const location = useLocation()
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="mx-auto max-w-7xl lg:flex lg:gap-x-16 lg:px-8">
|
||||||
|
<aside className="flex lg:rounded-md bg-white lg:h-56 lg:p-4 lg:mt-20 overflow-x-auto lg:border border-b py-4 lg:block lg:w-64 lg:flex-none dark:bg-[#171717] dark:border-gray-600">
|
||||||
|
<nav className="flex-none px-4 sm:px-6 lg:px-0">
|
||||||
|
<ul
|
||||||
|
role="list"
|
||||||
|
className="flex gap-x-3 gap-y-1 whitespace-nowrap lg:flex-col">
|
||||||
|
<LinkComponent
|
||||||
|
href="/settings"
|
||||||
|
name="General Settings"
|
||||||
|
icon={Orbit}
|
||||||
|
current={location.pathname}
|
||||||
|
/>
|
||||||
|
<LinkComponent
|
||||||
|
href="/settings/ollama"
|
||||||
|
name="Ollama Settings"
|
||||||
|
icon={CircuitBoardIcon}
|
||||||
|
current={location.pathname}
|
||||||
|
/>
|
||||||
|
<LinkComponent
|
||||||
|
href="/settings/model"
|
||||||
|
name="Manage Model"
|
||||||
|
current={location.pathname}
|
||||||
|
icon={BrainCircuit}
|
||||||
|
/>
|
||||||
|
<LinkComponent
|
||||||
|
href="/settings/prompt"
|
||||||
|
name="Manage Prompt"
|
||||||
|
icon={Book}
|
||||||
|
current={location.pathname}
|
||||||
|
/>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</aside>
|
||||||
|
|
||||||
|
<main className={"px-4 py-16 sm:px-6 lg:flex-auto lg:px-0 lg:py-20"}>
|
||||||
|
<div className="mx-auto max-w-2xl space-y-16 sm:space-y-10 lg:mx-0 lg:max-w-none">
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -2,16 +2,14 @@ import React, { useState } from "react"
|
|||||||
|
|
||||||
import { useLocation, NavLink } from "react-router-dom"
|
import { useLocation, NavLink } from "react-router-dom"
|
||||||
import { Sidebar } from "./Sidebar"
|
import { Sidebar } from "./Sidebar"
|
||||||
import { Drawer, Layout, Modal, Select, Tooltip } from "antd"
|
import { Drawer, Select, Tooltip } from "antd"
|
||||||
import { useQuery } from "@tanstack/react-query"
|
import { useQuery } from "@tanstack/react-query"
|
||||||
import { getAllModels } from "~services/ollama"
|
import { getAllModels } from "~services/ollama"
|
||||||
import { useMessageOption } from "~hooks/useMessageOption"
|
import { useMessageOption } from "~hooks/useMessageOption"
|
||||||
import { Settings } from "./Settings"
|
|
||||||
import {
|
import {
|
||||||
Book,
|
|
||||||
BrainCircuit,
|
|
||||||
ChevronLeft,
|
ChevronLeft,
|
||||||
CogIcon,
|
CogIcon,
|
||||||
|
GithubIcon,
|
||||||
PanelLeftIcon,
|
PanelLeftIcon,
|
||||||
SquarePen
|
SquarePen
|
||||||
} from "lucide-react"
|
} from "lucide-react"
|
||||||
@ -22,7 +20,6 @@ export default function OptionLayout({
|
|||||||
children: React.ReactNode
|
children: React.ReactNode
|
||||||
}) {
|
}) {
|
||||||
const [sidebarOpen, setSidebarOpen] = useState(false)
|
const [sidebarOpen, setSidebarOpen] = useState(false)
|
||||||
const [open, setOpen] = useState(false)
|
|
||||||
|
|
||||||
const {
|
const {
|
||||||
data: models,
|
data: models,
|
||||||
@ -38,89 +35,99 @@ export default function OptionLayout({
|
|||||||
const { selectedModel, setSelectedModel, clearChat } = useMessageOption()
|
const { selectedModel, setSelectedModel, clearChat } = useMessageOption()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout className="bg-white dark:bg-[#171717] md:flex">
|
<div>
|
||||||
<div className="flex items-center p-3 fixed flex-row justify-between border-b border-gray-200 dark:border-gray-600 bg-white dark:bg-[#171717] w-full z-10">
|
<div>
|
||||||
<div className="flex items-center flex-row gap-3">
|
<div className="flex flex-col">
|
||||||
{pathname !== "/" && (
|
<div className="sticky top-0 z-[999] flex h-16 p-3 bg-white border-b border-gray-200 dark:bg-[#171717] dark:border-gray-600">
|
||||||
<div>
|
<div className="flex gap-2 items-center">
|
||||||
<NavLink
|
{pathname !== "/" && (
|
||||||
to="/"
|
<div>
|
||||||
className="text-gray-500 items-center dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
<NavLink
|
||||||
<ChevronLeft className="w-6 h-6" />
|
to="/"
|
||||||
</NavLink>
|
className="text-gray-500 items-center dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
||||||
|
<ChevronLeft className="w-6 h-6" />
|
||||||
|
</NavLink>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div>
|
||||||
|
<button
|
||||||
|
className="text-gray-500 dark:text-gray-400"
|
||||||
|
onClick={() => setSidebarOpen(true)}>
|
||||||
|
<PanelLeftIcon className="w-6 h-6" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button
|
||||||
|
onClick={clearChat}
|
||||||
|
className="inline-flex items-center rounded-lg border dark:border-gray-700 bg-transparent px-3 py-3 text-sm font-medium leading-4 text-gray-800 shadow-sm dark:text-white disabled:opacity-50 ">
|
||||||
|
<SquarePen className="h-4 w-4 mr-3" />
|
||||||
|
New Chat
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<span className="text-lg font-thin text-zinc-300 dark:text-zinc-600">
|
||||||
|
{"/"}
|
||||||
|
</span>
|
||||||
|
<div>
|
||||||
|
<Select
|
||||||
|
value={selectedModel}
|
||||||
|
onChange={setSelectedModel}
|
||||||
|
size="large"
|
||||||
|
loading={isModelsLoading || isModelsFetching}
|
||||||
|
filterOption={(input, option) =>
|
||||||
|
option.label.toLowerCase().indexOf(input.toLowerCase()) >=
|
||||||
|
0 ||
|
||||||
|
option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
}
|
||||||
|
showSearch
|
||||||
|
placeholder="Select a model"
|
||||||
|
className="w-64 "
|
||||||
|
options={models?.map((model) => ({
|
||||||
|
label: model.name,
|
||||||
|
value: model.model
|
||||||
|
}))}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-1 justify-end px-4">
|
||||||
|
<div className="ml-4 flex items-center md:ml-6">
|
||||||
|
<div className="flex gap-4 items-center">
|
||||||
|
{/* <Tooltip title="Manage Prompts">
|
||||||
|
<NavLink
|
||||||
|
to="/prompts"
|
||||||
|
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
||||||
|
<Book className="w-6 h-6" />
|
||||||
|
</NavLink>
|
||||||
|
</Tooltip> */}
|
||||||
|
<Tooltip title="Github Repository">
|
||||||
|
<a
|
||||||
|
href="https://github.com/n4ze3m/page-assist"
|
||||||
|
target="_blank"
|
||||||
|
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
||||||
|
<GithubIcon className="w-6 h-6" />
|
||||||
|
</a>
|
||||||
|
</Tooltip>
|
||||||
|
{/* <Tooltip title="Manage Ollama Models">
|
||||||
|
<NavLink
|
||||||
|
to="/models"
|
||||||
|
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
||||||
|
<BrainCircuit className="w-6 h-6" />
|
||||||
|
</NavLink>
|
||||||
|
</Tooltip> */}
|
||||||
|
<Tooltip title="Manage Ollama Models">
|
||||||
|
<NavLink
|
||||||
|
to="/settings"
|
||||||
|
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
||||||
|
<CogIcon className="w-6 h-6" />
|
||||||
|
</NavLink>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
<div>
|
|
||||||
<button
|
|
||||||
className="text-gray-500 dark:text-gray-400"
|
|
||||||
onClick={() => setSidebarOpen(true)}>
|
|
||||||
<PanelLeftIcon className="w-6 h-6" />
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<main className="flex-1">{children}</main>
|
||||||
<button
|
|
||||||
onClick={clearChat}
|
|
||||||
className="inline-flex items-center rounded-lg border dark:border-gray-700 bg-transparent px-3 py-3 text-sm font-medium leading-4 text-gray-800 shadow-sm dark:text-white disabled:opacity-50 ">
|
|
||||||
<SquarePen className="h-4 w-4 mr-3" />
|
|
||||||
New Chat
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<span className="text-lg font-thin text-zinc-300 dark:text-zinc-600">
|
|
||||||
{"/"}
|
|
||||||
</span>
|
|
||||||
<div>
|
|
||||||
<Select
|
|
||||||
value={selectedModel}
|
|
||||||
onChange={setSelectedModel}
|
|
||||||
size="large"
|
|
||||||
loading={isModelsLoading || isModelsFetching}
|
|
||||||
filterOption={(input, option) =>
|
|
||||||
option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0 ||
|
|
||||||
option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
||||||
}
|
|
||||||
showSearch
|
|
||||||
placeholder="Select a model"
|
|
||||||
className="w-64 "
|
|
||||||
options={models?.map((model) => ({
|
|
||||||
label: model.name,
|
|
||||||
value: model.model
|
|
||||||
}))}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-4 items-center">
|
|
||||||
<Tooltip title="Manage Prompts">
|
|
||||||
<NavLink
|
|
||||||
to="/prompts"
|
|
||||||
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
|
||||||
<Book className="w-6 h-6" />
|
|
||||||
</NavLink>
|
|
||||||
</Tooltip>
|
|
||||||
{/* <Tooltip title="Github Repository">
|
|
||||||
<a
|
|
||||||
href="https://github.com/n4ze3m/page-assist"
|
|
||||||
target="_blank"
|
|
||||||
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
|
||||||
<GithubIcon className="w-6 h-6" />
|
|
||||||
</a>
|
|
||||||
</Tooltip> */}
|
|
||||||
<Tooltip title="Manage Ollama Models">
|
|
||||||
<NavLink
|
|
||||||
to="/models"
|
|
||||||
className="!text-gray-500 dark:text-gray-400 hover:text-gray-600 dark:hover:text-gray-300 transition-colors">
|
|
||||||
<BrainCircuit className="w-6 h-6" />
|
|
||||||
</NavLink>
|
|
||||||
</Tooltip>
|
|
||||||
<button
|
|
||||||
onClick={() => setOpen(true)}
|
|
||||||
className="text-gray-500 dark:text-gray-400">
|
|
||||||
<CogIcon className="w-6 h-6" />
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Layout.Content>{children}</Layout.Content>
|
|
||||||
|
|
||||||
<Drawer
|
<Drawer
|
||||||
title={"Chat History"}
|
title={"Chat History"}
|
||||||
placement="left"
|
placement="left"
|
||||||
@ -129,16 +136,6 @@ export default function OptionLayout({
|
|||||||
open={sidebarOpen}>
|
open={sidebarOpen}>
|
||||||
<Sidebar />
|
<Sidebar />
|
||||||
</Drawer>
|
</Drawer>
|
||||||
|
</div>
|
||||||
<Modal
|
|
||||||
open={open}
|
|
||||||
width={800}
|
|
||||||
title={"Settings"}
|
|
||||||
onOk={() => setOpen(false)}
|
|
||||||
footer={null}
|
|
||||||
onCancel={() => setOpen(false)}>
|
|
||||||
<Settings setClose={() => setOpen(false)} />
|
|
||||||
</Modal>
|
|
||||||
</Layout>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,7 +22,7 @@ export const ModelsBody = () => {
|
|||||||
|
|
||||||
const { data, status } = useQuery({
|
const { data, status } = useQuery({
|
||||||
queryKey: ["fetchAllModels"],
|
queryKey: ["fetchAllModels"],
|
||||||
queryFn: getAllModels
|
queryFn: () => getAllModels({ returnEmpty: true })
|
||||||
})
|
})
|
||||||
|
|
||||||
const { mutate: deleteOllamaModel } = useMutation({
|
const { mutate: deleteOllamaModel } = useMutation({
|
||||||
@ -67,8 +67,8 @@ export const ModelsBody = () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="z-10 min-h-screen">
|
<div>
|
||||||
<div className="mt-16 mx-auto py-10 max-w-7xl px-3 sm:px-6 lg:px-8">
|
<div>
|
||||||
{/* Add new model button */}
|
{/* Add new model button */}
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<div className="-ml-4 -mt-2 flex flex-wrap items-center justify-end sm:flex-nowrap">
|
<div className="-ml-4 -mt-2 flex flex-wrap items-center justify-end sm:flex-nowrap">
|
||||||
|
|||||||
@ -70,17 +70,15 @@ export const Playground = () => {
|
|||||||
ref={drop}
|
ref={drop}
|
||||||
className={`${
|
className={`${
|
||||||
dropState === "dragging" ? "bg-gray-100 dark:bg-gray-800 z-10" : ""
|
dropState === "dragging" ? "bg-gray-100 dark:bg-gray-800 z-10" : ""
|
||||||
} min-h-screen`}>
|
} bg-white dark:bg-[#171717]`}>
|
||||||
<PlaygroundChat />
|
<PlaygroundChat />
|
||||||
<div className="flex flex-col items-center">
|
<div className="flex flex-col items-center">
|
||||||
<div className="flex-grow">
|
<div className="flex-grow">
|
||||||
<div className="w-full flex justify-center">
|
<div className="w-full flex justify-center">
|
||||||
<div className="bottom-0 w-full bg-transparent border-0 fixed pt-2">
|
<div className="bottom-0 w-full bg-transparent border-0 fixed pt-2">
|
||||||
<div className="stretch mx-2 flex flex-row gap-3 md:mx-4 lg:mx-auto lg:max-w-2xl xl:max-w-3xl justify-center items-center">
|
<div className="stretch mx-2 flex flex-row gap-3 md:mx-4 lg:mx-auto lg:max-w-2xl xl:max-w-3xl justify-center items-center">
|
||||||
<div className="relative h-full flex-1 items-center justify-center md:flex-col">
|
<div className="relative h-full flex-1 items-center justify-center md:flex-col">
|
||||||
<PlaygroundForm
|
<PlaygroundForm dropedFile={dropedFile} />
|
||||||
dropedFile={dropedFile}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -18,7 +18,7 @@ export const PlaygroundChat = () => {
|
|||||||
<PlaygroundEmpty />
|
<PlaygroundEmpty />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{messages.length > 0 && <div className="w-full h-16 flex-shrink-0"></div>}
|
{/* {messages.length > 0 && <div className="w-full h-16 flex-shrink-0"></div>} */}
|
||||||
{messages.map((message, index) => (
|
{messages.map((message, index) => (
|
||||||
<PlaygroundMessage
|
<PlaygroundMessage
|
||||||
key={index}
|
key={index}
|
||||||
|
|||||||
@ -101,8 +101,8 @@ export const PromptBody = () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="z-10 min-h-screen">
|
<div>
|
||||||
<div className="mt-16 mx-auto py-10 max-w-7xl px-3 sm:px-6 lg:px-8">
|
<div>
|
||||||
<div className="mb-6">
|
<div className="mb-6">
|
||||||
<div className="-ml-4 -mt-2 flex flex-wrap items-center justify-end sm:flex-nowrap">
|
<div className="-ml-4 -mt-2 flex flex-wrap items-center justify-end sm:flex-nowrap">
|
||||||
<div className="ml-4 mt-2 flex-shrink-0">
|
<div className="ml-4 mt-2 flex-shrink-0">
|
||||||
|
|||||||
@ -11,6 +11,7 @@ import {
|
|||||||
saveForRag,
|
saveForRag,
|
||||||
setOllamaURL as saveOllamaURL
|
setOllamaURL as saveOllamaURL
|
||||||
} from "~services/ollama"
|
} from "~services/ollama"
|
||||||
|
import { SettingPrompt } from "./prompt"
|
||||||
|
|
||||||
export const SettingsOllama = () => {
|
export const SettingsOllama = () => {
|
||||||
const [ollamaURL, setOllamaURL] = useState<string>("")
|
const [ollamaURL, setOllamaURL] = useState<string>("")
|
||||||
@ -20,7 +21,7 @@ export const SettingsOllama = () => {
|
|||||||
const [ollamaURL, allModels, chunkOverlap, chunkSize, defaultEM] =
|
const [ollamaURL, allModels, chunkOverlap, chunkSize, defaultEM] =
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
getOllamaURL(),
|
getOllamaURL(),
|
||||||
getAllModels(),
|
getAllModels({returnEmpty: true}),
|
||||||
defaultEmbeddingChunkOverlap(),
|
defaultEmbeddingChunkOverlap(),
|
||||||
defaultEmbeddingChunkSize(),
|
defaultEmbeddingChunkSize(),
|
||||||
defaultEmbeddingModelForRag()
|
defaultEmbeddingModelForRag()
|
||||||
@ -46,98 +47,130 @@ export const SettingsOllama = () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-3">
|
<div className="flex flex-col space-y-3">
|
||||||
{status === "pending" && <Skeleton paragraph={{ rows: 4 }} active />}
|
{status === "pending" && <Skeleton paragraph={{ rows: 4 }} active />}
|
||||||
{status === "success" && (
|
{status === "success" && (
|
||||||
<>
|
<div className="flex flex-col space-y-6">
|
||||||
<div>
|
<div>
|
||||||
<label
|
<div>
|
||||||
htmlFor="ollamaURL"
|
<h2 className="text-base font-semibold leading-7 text-gray-900 dark:text-white">
|
||||||
className="text-sm font-medium dark:text-gray-200">
|
Configure Ollama
|
||||||
Ollama URL
|
</h2>
|
||||||
</label>
|
<div className="border border-b border-gray-200 dark:border-gray-600 mt-3 mb-6"></div>
|
||||||
<input
|
|
||||||
type="url"
|
|
||||||
id="ollamaURL"
|
|
||||||
value={ollamaURL}
|
|
||||||
onChange={(e) => {
|
|
||||||
setOllamaURL(e.target.value)
|
|
||||||
}}
|
|
||||||
placeholder="Your Ollama URL"
|
|
||||||
className="w-full p-2 border border-gray-300 rounded-md dark:bg-[#262626] dark:text-gray-100"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="flex justify-end">
|
|
||||||
<SaveButton
|
|
||||||
onClick={() => {
|
|
||||||
saveOllamaURL(ollamaURL)
|
|
||||||
}}
|
|
||||||
className="mt-2"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Form
|
|
||||||
layout="vertical"
|
|
||||||
onFinish={(data) => {
|
|
||||||
saveRAG({
|
|
||||||
model: data.defaultEM,
|
|
||||||
chunkSize: data.chunkSize,
|
|
||||||
overlap: data.chunkOverlap
|
|
||||||
})
|
|
||||||
}}
|
|
||||||
initialValues={{
|
|
||||||
chunkSize: ollamaInfo?.chunkSize,
|
|
||||||
chunkOverlap: ollamaInfo?.chunkOverlap,
|
|
||||||
defaultEM: ollamaInfo?.defaultEM
|
|
||||||
}}>
|
|
||||||
<Form.Item
|
|
||||||
name="defaultEM"
|
|
||||||
label="Embedding Model"
|
|
||||||
help="Highly recommended to use embedding models like `nomic-embed-text`."
|
|
||||||
rules={[{ required: true, message: "Please select a model!" }]}>
|
|
||||||
<Select
|
|
||||||
size="large"
|
|
||||||
filterOption={(input, option) =>
|
|
||||||
option.label.toLowerCase().indexOf(input.toLowerCase()) >=
|
|
||||||
0 ||
|
|
||||||
option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
||||||
}
|
|
||||||
showSearch
|
|
||||||
placeholder="Select a model"
|
|
||||||
style={{ width: "100%" }}
|
|
||||||
className="mt-4"
|
|
||||||
options={ollamaInfo.models?.map((model) => ({
|
|
||||||
label: model.name,
|
|
||||||
value: model.model
|
|
||||||
}))}
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
|
|
||||||
<Form.Item
|
|
||||||
name="chunkSize"
|
|
||||||
label="Chunk Size"
|
|
||||||
rules={[
|
|
||||||
{ required: true, message: "Please input your chunk size!" }
|
|
||||||
]}>
|
|
||||||
<InputNumber style={{ width: "100%" }} placeholder="Chunk Size" />
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="chunkOverlap"
|
|
||||||
label="Chunk Overlap"
|
|
||||||
rules={[
|
|
||||||
{ required: true, message: "Please input your chunk overlap!" }
|
|
||||||
]}>
|
|
||||||
<InputNumber
|
|
||||||
style={{ width: "100%" }}
|
|
||||||
placeholder="Chunk Overlap"
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
|
|
||||||
<div className="flex justify-end">
|
|
||||||
<SaveButton disabled={isSaveRAGPending} btnType="submit" />
|
|
||||||
</div>
|
</div>
|
||||||
</Form>
|
<div>
|
||||||
</>
|
<label
|
||||||
|
htmlFor="ollamaURL"
|
||||||
|
className="text-sm font-medium dark:text-gray-200">
|
||||||
|
Ollama URL
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
type="url"
|
||||||
|
id="ollamaURL"
|
||||||
|
value={ollamaURL}
|
||||||
|
onChange={(e) => {
|
||||||
|
setOllamaURL(e.target.value)
|
||||||
|
}}
|
||||||
|
placeholder="Your Ollama URL"
|
||||||
|
className="w-full p-2 border border-gray-300 rounded-md dark:bg-[#262626] dark:text-gray-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-end">
|
||||||
|
<SaveButton
|
||||||
|
onClick={() => {
|
||||||
|
saveOllamaURL(ollamaURL)
|
||||||
|
}}
|
||||||
|
className="mt-2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2 className="text-base font-semibold leading-7 text-gray-900 dark:text-white">
|
||||||
|
Configure RAG
|
||||||
|
</h2>
|
||||||
|
<div className="border border-b border-gray-200 dark:border-gray-600 mt-3 mb-6"></div>
|
||||||
|
</div>
|
||||||
|
<Form
|
||||||
|
layout="vertical"
|
||||||
|
onFinish={(data) => {
|
||||||
|
saveRAG({
|
||||||
|
model: data.defaultEM,
|
||||||
|
chunkSize: data.chunkSize,
|
||||||
|
overlap: data.chunkOverlap
|
||||||
|
})
|
||||||
|
}}
|
||||||
|
initialValues={{
|
||||||
|
chunkSize: ollamaInfo?.chunkSize,
|
||||||
|
chunkOverlap: ollamaInfo?.chunkOverlap,
|
||||||
|
defaultEM: ollamaInfo?.defaultEM
|
||||||
|
}}>
|
||||||
|
<Form.Item
|
||||||
|
name="defaultEM"
|
||||||
|
label="Embedding Model"
|
||||||
|
help="Highly recommended to use embedding models like `nomic-embed-text`."
|
||||||
|
rules={[{ required: true, message: "Please select a model!" }]}>
|
||||||
|
<Select
|
||||||
|
size="large"
|
||||||
|
filterOption={(input, option) =>
|
||||||
|
option.label.toLowerCase().indexOf(input.toLowerCase()) >=
|
||||||
|
0 ||
|
||||||
|
option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
}
|
||||||
|
showSearch
|
||||||
|
placeholder="Select a model"
|
||||||
|
style={{ width: "100%" }}
|
||||||
|
className="mt-4"
|
||||||
|
options={ollamaInfo.models?.map((model) => ({
|
||||||
|
label: model.name,
|
||||||
|
value: model.model
|
||||||
|
}))}
|
||||||
|
/>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
name="chunkSize"
|
||||||
|
label="Chunk Size"
|
||||||
|
rules={[
|
||||||
|
{ required: true, message: "Please input your chunk size!" }
|
||||||
|
]}>
|
||||||
|
<InputNumber
|
||||||
|
style={{ width: "100%" }}
|
||||||
|
placeholder="Chunk Size"
|
||||||
|
/>
|
||||||
|
</Form.Item>
|
||||||
|
<Form.Item
|
||||||
|
name="chunkOverlap"
|
||||||
|
label="Chunk Overlap"
|
||||||
|
rules={[
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: "Please input your chunk overlap!"
|
||||||
|
}
|
||||||
|
]}>
|
||||||
|
<InputNumber
|
||||||
|
style={{ width: "100%" }}
|
||||||
|
placeholder="Chunk Overlap"
|
||||||
|
/>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<div className="flex justify-end">
|
||||||
|
<SaveButton disabled={isSaveRAGPending} btnType="submit" />
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2 className="text-base font-semibold leading-7 text-gray-900 dark:text-white">
|
||||||
|
Configure RAG Prompt
|
||||||
|
</h2>
|
||||||
|
<div className="border border-b border-gray-200 dark:border-gray-600 mt-3 mb-6"></div>
|
||||||
|
</div>
|
||||||
|
<SettingPrompt />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@ -15,9 +15,15 @@ export const SettingOther = () => {
|
|||||||
const { mode, toggleDarkMode } = useDarkMode()
|
const { mode, toggleDarkMode } = useDarkMode()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col space-y-4">
|
<dl className="flex flex-col space-y-6">
|
||||||
|
<div>
|
||||||
|
<h2 className="text-base font-semibold leading-7 text-gray-900 dark:text-white">
|
||||||
|
Web UI Settings
|
||||||
|
</h2>
|
||||||
|
<div className="border border-b border-gray-200 dark:border-gray-600 mt-3"></div>
|
||||||
|
</div>
|
||||||
<div className="flex flex-row justify-between">
|
<div className="flex flex-row justify-between">
|
||||||
<span className="text-gray-500 dark:text-gray-400 text-md">
|
<span className="text-gray-500 dark:text-gray-400 text-lg">
|
||||||
Speech Recognition Language
|
Speech Recognition Language
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -37,7 +43,7 @@ export const SettingOther = () => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-row justify-between">
|
<div className="flex flex-row justify-between">
|
||||||
<span className="text-gray-500 dark:text-gray-400 text-md">
|
<span className="text-gray-500 dark:text-gray-400 text-lg">
|
||||||
Change Theme
|
Change Theme
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -53,7 +59,7 @@ export const SettingOther = () => {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-row justify-between">
|
<div className="flex flex-row justify-between">
|
||||||
<span className="text-gray-500 dark:text-gray-400 text-md">
|
<span className="text-gray-500 dark:text-gray-400 text-lg">
|
||||||
Delete Chat History
|
Delete Chat History
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -76,6 +82,6 @@ export const SettingOther = () => {
|
|||||||
Delete
|
Delete
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</dl>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { useQuery, useQueryClient } from "@tanstack/react-query"
|
import { useQuery, useQueryClient } from "@tanstack/react-query"
|
||||||
import { Skeleton, Radio, Form } from "antd"
|
import { Skeleton, Radio, Form, Alert } from "antd"
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { SaveButton } from "~components/Common/SaveButton"
|
import { SaveButton } from "~components/Common/SaveButton"
|
||||||
import {
|
import {
|
||||||
@ -12,7 +12,7 @@ import {
|
|||||||
|
|
||||||
export const SettingPrompt = () => {
|
export const SettingPrompt = () => {
|
||||||
const [selectedValue, setSelectedValue] = React.useState<"normal" | "web">(
|
const [selectedValue, setSelectedValue] = React.useState<"normal" | "web">(
|
||||||
"normal"
|
"web"
|
||||||
)
|
)
|
||||||
|
|
||||||
const queryClient = useQueryClient()
|
const queryClient = useQueryClient()
|
||||||
@ -41,7 +41,6 @@ export const SettingPrompt = () => {
|
|||||||
|
|
||||||
{status === "success" && (
|
{status === "success" && (
|
||||||
<div>
|
<div>
|
||||||
<h2 className="text-md font-semibold dark:text-white">Prompt</h2>
|
|
||||||
<div className="my-3 flex justify-end">
|
<div className="my-3 flex justify-end">
|
||||||
<Radio.Group
|
<Radio.Group
|
||||||
defaultValue={selectedValue}
|
defaultValue={selectedValue}
|
||||||
@ -63,6 +62,14 @@ export const SettingPrompt = () => {
|
|||||||
initialValues={{
|
initialValues={{
|
||||||
prompt: data.prompt
|
prompt: data.prompt
|
||||||
}}>
|
}}>
|
||||||
|
<Form.Item>
|
||||||
|
<Alert
|
||||||
|
message="Configuring the system prompt here is deprecated. Please use the Manage Prompts section to add or edit prompts. This section will be removed in a future release"
|
||||||
|
type="warning"
|
||||||
|
showIcon
|
||||||
|
closable
|
||||||
|
/>
|
||||||
|
</Form.Item>
|
||||||
<Form.Item label="System Prompt" name="prompt">
|
<Form.Item label="System Prompt" name="prompt">
|
||||||
<textarea
|
<textarea
|
||||||
value={data.prompt}
|
value={data.prompt}
|
||||||
|
|||||||
@ -22,7 +22,7 @@ export const EmptySidePanel = () => {
|
|||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
const ollamaURL = await getOllamaURL()
|
const ollamaURL = await getOllamaURL()
|
||||||
const isOk = await isOllamaRunning()
|
const isOk = await isOllamaRunning()
|
||||||
const models = await getAllModels()
|
const models = await getAllModels({ returnEmpty: false })
|
||||||
|
|
||||||
return {
|
return {
|
||||||
isOk,
|
isOk,
|
||||||
|
|||||||
@ -48,7 +48,7 @@ export const SettingsBody = () => {
|
|||||||
getOllamaURL(),
|
getOllamaURL(),
|
||||||
systemPromptForNonRag(),
|
systemPromptForNonRag(),
|
||||||
promptForRag(),
|
promptForRag(),
|
||||||
getAllModels(),
|
getAllModels({ returnEmpty: true }),
|
||||||
defaultEmbeddingChunkOverlap(),
|
defaultEmbeddingChunkOverlap(),
|
||||||
defaultEmbeddingChunkSize(),
|
defaultEmbeddingChunkSize(),
|
||||||
defaultEmbeddingModelForRag()
|
defaultEmbeddingModelForRag()
|
||||||
|
|||||||
8
src/options.html
Normal file
8
src/options.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>__plasmo_static_index_title__</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
</head>
|
||||||
|
<body class="bg-white dark:bg-[#171717]"></body>
|
||||||
|
</html>
|
||||||
@ -3,8 +3,10 @@ import { SidepanelChat } from "./sidepanel-chat"
|
|||||||
import { useDarkMode } from "~hooks/useDarkmode"
|
import { useDarkMode } from "~hooks/useDarkmode"
|
||||||
import { SidepanelSettings } from "./sidepanel-settings"
|
import { SidepanelSettings } from "./sidepanel-settings"
|
||||||
import { OptionIndex } from "./option-index"
|
import { OptionIndex } from "./option-index"
|
||||||
import { OptionModal } from "./option-model"
|
import { OptionModal } from "./option-settings-model"
|
||||||
import { OptionPrompt } from "./option-prompt"
|
import { OptionPrompt } from "./option-settings-prompt"
|
||||||
|
import { OptionOllamaSettings } from "./options-settings-ollama"
|
||||||
|
import { OptionSettings } from "./option-settings"
|
||||||
|
|
||||||
export const OptionRouting = () => {
|
export const OptionRouting = () => {
|
||||||
const { mode } = useDarkMode()
|
const { mode } = useDarkMode()
|
||||||
@ -13,8 +15,10 @@ export const OptionRouting = () => {
|
|||||||
<div className={mode === "dark" ? "dark" : "light"}>
|
<div className={mode === "dark" ? "dark" : "light"}>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<OptionIndex />} />
|
<Route path="/" element={<OptionIndex />} />
|
||||||
<Route path="/models" element={<OptionModal />} />
|
<Route path="/settings" element={<OptionSettings />} />
|
||||||
<Route path="/prompts" element={<OptionPrompt />} />
|
<Route path="/settings/model" element={<OptionModal />} />
|
||||||
|
<Route path="/settings/prompt" element={<OptionPrompt />} />
|
||||||
|
<Route path="/settings/ollama" element={<OptionOllamaSettings />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
@ -1,10 +1,13 @@
|
|||||||
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||||||
import OptionLayout from "~components/Option/Layout"
|
import OptionLayout from "~components/Option/Layout"
|
||||||
import { ModelsBody } from "~components/Option/Models"
|
import { ModelsBody } from "~components/Option/Models"
|
||||||
|
|
||||||
export const OptionModal = () => {
|
export const OptionModal = () => {
|
||||||
return (
|
return (
|
||||||
<OptionLayout>
|
<OptionLayout>
|
||||||
<ModelsBody />
|
<SettingsLayout>
|
||||||
|
<ModelsBody />
|
||||||
|
</SettingsLayout>
|
||||||
</OptionLayout>
|
</OptionLayout>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -1,10 +1,13 @@
|
|||||||
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||||||
import OptionLayout from "~components/Option/Layout"
|
import OptionLayout from "~components/Option/Layout"
|
||||||
import { PromptBody } from "~components/Option/Prompt"
|
import { PromptBody } from "~components/Option/Prompt"
|
||||||
|
|
||||||
export const OptionPrompt = () => {
|
export const OptionPrompt = () => {
|
||||||
return (
|
return (
|
||||||
<OptionLayout>
|
<OptionLayout>
|
||||||
<PromptBody />
|
<SettingsLayout>
|
||||||
|
<PromptBody />
|
||||||
|
</SettingsLayout>
|
||||||
</OptionLayout>
|
</OptionLayout>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
13
src/routes/option-settings.tsx
Normal file
13
src/routes/option-settings.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||||||
|
import OptionLayout from "~components/Option/Layout"
|
||||||
|
import { SettingOther } from "~components/Option/Settings/other"
|
||||||
|
|
||||||
|
export const OptionSettings = () => {
|
||||||
|
return (
|
||||||
|
<OptionLayout>
|
||||||
|
<SettingsLayout>
|
||||||
|
<SettingOther />
|
||||||
|
</SettingsLayout>
|
||||||
|
</OptionLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
13
src/routes/options-settings-ollama.tsx
Normal file
13
src/routes/options-settings-ollama.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { SettingsLayout } from "~components/Layouts/SettingsOptionLayout"
|
||||||
|
import OptionLayout from "~components/Option/Layout"
|
||||||
|
import { SettingsOllama } from "~components/Option/Settings/ollama"
|
||||||
|
|
||||||
|
export const OptionOllamaSettings = () => {
|
||||||
|
return (
|
||||||
|
<OptionLayout>
|
||||||
|
<SettingsLayout>
|
||||||
|
<SettingsOllama />
|
||||||
|
</SettingsLayout>
|
||||||
|
</OptionLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -60,10 +60,13 @@ export const isOllamaRunning = async () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getAllModels = async () => {
|
export const getAllModels = async ({ returnEmpty = false }: { returnEmpty?: boolean }) => {
|
||||||
const baseUrl = await getOllamaURL()
|
const baseUrl = await getOllamaURL()
|
||||||
const response = await fetch(`${cleanUrl(baseUrl)}/api/tags`)
|
const response = await fetch(`${cleanUrl(baseUrl)}/api/tags`)
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
|
if (returnEmpty) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
throw new Error(response.statusText)
|
throw new Error(response.statusText)
|
||||||
}
|
}
|
||||||
const json = await response.json()
|
const json = await response.json()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user