b21bfb2f1d
- PricingCatalog.php: single source of truth for plans (free/plus/pro), top-ups, Stripe price env keys, tool costs (0–6 credits), STT variable billing, feature limits - FreeTier.php: monthly-first credit deduction, ledger (user_tool_credit_ledger), STT reservation/settle/release, monthly reset, trial logic - StripeClient.php: canonical SKUs (plus/pro/topup_100/300/1000), legacy aliases kept - stripe-checkout.php: subscription vs payment mode, trial gating, catalog metadata - stripe-webhook.php: idempotent via stripe_events, handles subscription lifecycle + invoice.paid renewal + one-time topup credit grants - All API tools: success-based credit deduction (check before, charge after) - transcribe.php: file-size heuristic reservation, settle from actual provider duration - ask.php + LegalTools.php: ToolModels engine resolution — Pro gets gpt-4o - KorrespondAgent.php + korrespond.php: tier-gated draft deployment — Free/Plus gets gpt-4o-mini, Pro gets gpt-4o - pricing.php: NOK-only, plan cards, top-up packs, Organisation contact card, tool cost table, separate monthly/prepaid balance display - 003_pricing_credit_catalog.sql: ledger and STT reservation tables Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49 lines
2.0 KiB
PHP
49 lines
2.0 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../includes/LegalTools.php';
|
|
require_once __DIR__ . '/../includes/ToolModels.php';
|
|
|
|
dbnToolsRequireMethod('POST');
|
|
dbnToolsRequireAuth();
|
|
$ftUid = dbnToolsFreeTierCheck('timeline');
|
|
$input = dbnToolsJsonInput(400000);
|
|
$language = dbnToolsNormalizeLanguage($input['language'] ?? 'en');
|
|
|
|
dbnToolsWithChargedTelemetry('timeline', $language, $ftUid, function () use ($input, $language, $ftUid): array {
|
|
$text = dbnToolsInjectDocContent($input, dbnToolsString($input, 'text', 128000, false));
|
|
if (mb_strlen(trim($text), 'UTF-8') < 10) {
|
|
dbnToolsAbort('Paste text, upload a file, or select a document before running.', 422, 'empty_text');
|
|
}
|
|
|
|
$validEngines = ['azure_mini', 'azure_full', 'gpu'];
|
|
$engine = in_array((string)($input['engine'] ?? ''), $validEngines, true)
|
|
? (string)$input['engine'] : 'azure_mini';
|
|
$engine = ToolModels::engineForUser($ftUid, $engine);
|
|
|
|
$validFocus = ['all', 'deadlines', 'hearings', 'cps'];
|
|
$focus = in_array((string)($input['focus'] ?? ''), $validFocus, true)
|
|
? (string)$input['focus'] : 'all';
|
|
|
|
$confidenceFilter = (string)($input['confidence_filter'] ?? '') === 'high_medium'
|
|
? 'high_medium' : 'all';
|
|
|
|
$includeRelative = ($input['include_relative'] ?? true) !== false;
|
|
$includeBackground = ($input['include_background'] ?? true) !== false;
|
|
$userNotes = dbnToolsString($input, 'user_notes', 2000, false);
|
|
|
|
// Optional: prepend the user's case-context chunks so the timeline includes events
|
|
// referenced in their uploaded case documents.
|
|
$useMyCase = !empty($input['use_my_case']);
|
|
if ($useMyCase) {
|
|
$caseBlock = dbnToolsCaseContext(true, $text, 5);
|
|
if ($caseBlock !== '') {
|
|
$text = $text . "\n\n" . $caseBlock;
|
|
}
|
|
}
|
|
|
|
$result = (new DbnLegalToolsService())->timeline($text, $language, $engine, $focus, $confidenceFilter, $includeRelative, $includeBackground, $userNotes);
|
|
|
|
return $result;
|
|
});
|