b78ab1e257
- DeepResearchAgent: engine guard now accepts dbn_legal_v3, claude_sonnet, claude_haiku
(previously stripped these to azure_mini, breaking dbn_legal_v3 selection and
preventing Claude engines from reaching the correct synthesis branch)
- DbnBedrockGateway: remove response_format=json_object from chat payload — LiteLLM
converts this to a tool-use constraint for Bedrock, routing output into tool_calls
instead of content (root cause of the {} empty brief)
- advocate.php: add Claude Sonnet 4.6 (AWS Bedrock) engine option
- account, billing, dashboard, nav, min-sak: pending UI/flow changes from prior sessions
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
325 B
PHP
10 lines
325 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
// Consolidated into /account.php (Plan & credits section).
|
|
// Preserve external bookmarks, Stripe return URLs and help-doc links via 302.
|
|
|
|
$paid = (isset($_GET['status']) && $_GET['status'] === 'success') ? '?paid=1' : '';
|
|
header('Location: /account.php' . $paid . '#plan', true, 302);
|
|
exit;
|