Skip to content

Commit

Permalink
add warning when using reasoning model for logs
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Feb 21, 2025
1 parent 9bc962f commit 83f0434
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pipes/obsidian/src/components/obsidian-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,15 @@ export function ObsidianSettings() {
});
}}
/>
{settings?.logModel &&
(settings.logModel.includes("deepseek") ||
settings.logModel.includes("o3") ||
settings.logModel.includes("o1")) && (
<p className="text-sm text-red-500">
warning: reasoning models like deepseek are not
recommended for log generation.
</p>
)}
<p className="text-xs text-muted-foreground">
local AI model used for generating individual activity
logs
Expand Down

0 comments on commit 83f0434

Please sign in to comment.