add_action('rest_api_init', function() { register_rest_route('strega/v1', '/chat', array( 'methods' => 'POST', 'callback' => function($request) { $body = $request->get_json_params(); $response = wp_remote_post('https://api.anthropic.com/v1/messages', array( 'headers' => array( 'Content-Type' => 'application/json', 'x-api-key' => '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', 'anthropic-version' => '2023-06-01', ), 'body' => json_encode($body), 'timeout' => 60, )); return json_decode(wp_remote_retrieve_body($response), true); }, 'permission_callback' => '__return_true', )); });