journal/Journal.Core/Services/Ai/DisabledCoachService.cs
Jacob Schmidt 0d77300c22 feat: Project Journal backend monorepo
Monorepo with centralized build props, npm workspaces, LlamaSharp AI,
SQLite/SQLCipher storage, Svelte frontend, and unified smoke tests.

Co-Authored-By: Oz <oz-agent@warp.dev>
2026-03-02 20:56:26 -06:00

27 lines
1.0 KiB
C#

using Journal.Core.Dtos;
namespace Journal.Core.Services.Ai;
public sealed class DisabledCoachService(string message = "Coach is not available. Set JOURNAL_AI_PROVIDER to enable.") : ICoachService
{
private readonly string _message = message;
public Task<CoachPlanDto> DailyCheckInAsync(CoachContextDto context, CancellationToken cancellationToken = default)
=> Task.FromResult(Disabled("daily_checkin"));
public Task<CoachPlanDto> EveningReviewAsync(CoachContextDto context, CancellationToken cancellationToken = default)
=> Task.FromResult(Disabled("evening_review"));
public Task<CoachPlanDto> WeeklyReviewAsync(CoachContextDto context, CancellationToken cancellationToken = default)
=> Task.FromResult(Disabled("weekly_review"));
private CoachPlanDto Disabled(string kind) => new(
Kind: kind,
Title: "Coach Disabled",
Summary: _message,
Questions: [],
SuggestedNextActions: [],
SuggestedTags: [],
Evidence: []);
}