+ {t('settings.tool.ocr.image_provider')}
+
+
+
+ >
+ )
+}
+
+export default OcrImageProviderSettings
diff --git a/src/renderer/src/pages/settings/DocProcessSettings/OcrSettings.tsx b/src/renderer/src/pages/settings/DocProcessSettings/OcrSettings.tsx
new file mode 100644
index 0000000000..d8763f0e2f
--- /dev/null
+++ b/src/renderer/src/pages/settings/DocProcessSettings/OcrSettings.tsx
@@ -0,0 +1,33 @@
+import { PictureOutlined } from '@ant-design/icons'
+import { useTheme } from '@renderer/context/ThemeProvider'
+import { Tabs, TabsProps } from 'antd'
+import { FC } from 'react'
+import { useTranslation } from 'react-i18next'
+
+import { SettingDivider, SettingGroup, SettingTitle } from '..'
+import OcrImageProviderSettings from './OcrImageProviderSettings'
+
+const OcrSettings: FC = () => {
+ const { t } = useTranslation()
+ const { theme: themeMode } = useTheme()
+
+ const tabs: TabsProps['items'] = [
+ {
+ key: 'image',
+ label: t('settings.tool.ocr.image.title'),
+ icon: