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>
26 lines
658 B
C#
26 lines
658 B
C#
namespace Journal.Core.Models;
|
|
|
|
public sealed record JournalConfig(
|
|
string ProjectRoot,
|
|
string AppDirectory,
|
|
string VaultDirectory,
|
|
string LogDirectory,
|
|
string PidFile,
|
|
string ServerControlFile,
|
|
string DatabaseFilename,
|
|
string CloudAiApiKey,
|
|
string CloudAiApiUrl,
|
|
string LlamaCppUrl,
|
|
string LlamaCppModel,
|
|
int LlamaCppTimeout,
|
|
string EmbeddingApiUrl,
|
|
string EmbeddingModelName,
|
|
int ModelContextTokens,
|
|
int ChunkTokenBudget,
|
|
int? MicrophoneDeviceIndex,
|
|
string SpeechRecognitionEngine,
|
|
string WhisperModelSize,
|
|
string NlpBackend,
|
|
string AiProvider,
|
|
string GgufModelPath);
|