- New method uses web_search_20260209 server-side tool so Claude fetches 48h of oil/geopolitical news autonomously before predicting direction - Prompt uses raw prices only — no pre-computed EWMA indicators - pause_turn loop handles server-side search continuation (up to 5 iters) - generatePrediction() now tries context method first, falls back to generateLlmPrediction(), then EWMA - Default model updated to claude-sonnet-4-6 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Third Party Services
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
|
| location for this type of information, allowing packages to have
|
|
| a conventional file to locate the various service credentials.
|
|
|
|
|
*/
|
|
|
|
'postmark' => [
|
|
'key' => env('POSTMARK_API_KEY'),
|
|
],
|
|
|
|
'resend' => [
|
|
'key' => env('RESEND_API_KEY'),
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
],
|
|
|
|
'slack' => [
|
|
'notifications' => [
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
],
|
|
],
|
|
|
|
'fuel_finder' => [
|
|
'base_url' => env('FUEL_FINDER_BASE_URL', 'https://www.fuel-finder.service.gov.uk/api/v1'),
|
|
'client_id' => env('FUEL_FINDER_CLIENT_ID'),
|
|
'client_secret' => env('FUEL_FINDER_CLIENT_SECRET'),
|
|
],
|
|
|
|
'fred' => [
|
|
'api_key' => env('FRED_API_KEY'),
|
|
],
|
|
|
|
'anthropic' => [
|
|
'api_key' => env('ANTHROPIC_API_KEY'),
|
|
'model' => env('ANTHROPIC_MODEL', 'claude-sonnet-4-6'),
|
|
],
|
|
|
|
];
|