- Add Journal.AI project with LLamaSharp-based AI service (Phi-3 model) - Implement coach sessions (daily check-in, evening review, weekly review) - Add conversation CRUD with SQLCipher persistence - AI chat with full conversation history for context-aware replies - Frontend: CoachPanel, AI stores, conversation stores, side panel UI - Conversation list with create, rename, and delete support - Fix Phi-3 output quality (system prompt leaking, token cleanup, JSON filtering) - Fix CREATEDRAFT kind override in coach sessions Co-Authored-By: Oz <oz-agent@warp.dev>
20 lines
776 B
C#
20 lines
776 B
C#
global using System.ComponentModel.DataAnnotations;
|
|
global using System.IO.Compression;
|
|
global using System.Text.Json;
|
|
global using Journal.Core;
|
|
global using Journal.Core.Dtos;
|
|
global using Journal.Core.Models;
|
|
global using Journal.Core.Repositories;
|
|
global using Journal.Core.Services.Ai;
|
|
global using Journal.Core.Services.Config;
|
|
global using Journal.Core.Services.Database;
|
|
global using Journal.Core.Services.Entries;
|
|
global using Journal.Core.Services.Fragments;
|
|
global using Journal.Core.Services.Logging;
|
|
global using Journal.Core.Services.Speech;
|
|
global using Journal.Core.Services.Sidecar;
|
|
global using Journal.Core.Services.Lists;
|
|
global using Journal.Core.Services.Todos;
|
|
global using Journal.Core.Services.Conversations;
|
|
global using Journal.Core.Services.Vault;
|