2024-03-23 14:44:05 +05:30
|
|
|
import { SettingsLayout } from "~/components/Layouts/SettingsOptionLayout"
|
|
|
|
|
import OptionLayout from "~/components/Layouts/Layout"
|
|
|
|
|
import { SettingsOllama } from "~/components/Option/Settings/ollama"
|
2024-03-03 19:55:43 +05:30
|
|
|
|
|
|
|
|
export const OptionOllamaSettings = () => {
|
|
|
|
|
return (
|
|
|
|
|
<OptionLayout>
|
|
|
|
|
<SettingsLayout>
|
|
|
|
|
<SettingsOllama />
|
|
|
|
|
</SettingsLayout>
|
|
|
|
|
</OptionLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|