@realtimex/folio 0.1.12 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +1 -0
- package/api/src/routes/ingestions.ts +2 -5
- package/api/src/routes/settings.ts +2 -0
- package/api/src/services/IngestionService.ts +430 -181
- package/api/src/services/ModelCapabilityService.ts +32 -5
- package/api/src/services/supabase.ts +2 -0
- package/dist/api/src/routes/ingestions.js +2 -5
- package/dist/api/src/routes/settings.js +2 -0
- package/dist/api/src/services/IngestionService.js +384 -173
- package/dist/api/src/services/ModelCapabilityService.js +24 -5
- package/dist/assets/index-aI2VZJFA.js +113 -0
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/supabase/functions/api-v1-settings/index.ts +2 -0
- package/supabase/migrations/20260302000000_add_ingestion_llm_settings.sql +12 -0
- package/dist/assets/index-tVGLBfz6.js +0 -113
package/dist/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
7
|
<title>Folio</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-aI2VZJFA.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-DzN8-j-e.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
|
@@ -29,6 +29,8 @@ Deno.serve(async (req: Request) => {
|
|
|
29
29
|
const payload = {
|
|
30
30
|
llm_provider: body.llm_provider,
|
|
31
31
|
llm_model: body.llm_model,
|
|
32
|
+
ingestion_llm_provider: body.ingestion_llm_provider,
|
|
33
|
+
ingestion_llm_model: body.ingestion_llm_model,
|
|
32
34
|
sync_interval_minutes: body.sync_interval_minutes,
|
|
33
35
|
tts_auto_play: body.tts_auto_play,
|
|
34
36
|
tts_provider: body.tts_provider,
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
-- Separate ingestion model settings from chat model settings.
|
|
2
|
+
-- Backward compatibility is handled in application logic by falling back to llm_provider/llm_model.
|
|
3
|
+
|
|
4
|
+
ALTER TABLE public.user_settings
|
|
5
|
+
ADD COLUMN IF NOT EXISTS ingestion_llm_provider TEXT,
|
|
6
|
+
ADD COLUMN IF NOT EXISTS ingestion_llm_model TEXT;
|
|
7
|
+
|
|
8
|
+
COMMENT ON COLUMN public.user_settings.ingestion_llm_provider IS
|
|
9
|
+
'Optional provider override for ingestion pipeline (triage, baseline extraction, policy processing). Falls back to llm_provider when null.';
|
|
10
|
+
|
|
11
|
+
COMMENT ON COLUMN public.user_settings.ingestion_llm_model IS
|
|
12
|
+
'Optional model override for ingestion pipeline (triage, baseline extraction, policy processing). Falls back to llm_model when null.';
|