16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
import { RagSettings } from "@/components/Option/Settings/rag"
|
|
|
|
const OptionRagSettings = () => {
|
|
return (
|
|
<OptionLayout>
|
|
<SettingsLayout>
|
|
<RagSettings />
|
|
</SettingsLayout>
|
|
</OptionLayout>
|
|
)
|
|
}
|
|
|
|
export default OptionRagSettings
|