/* * ============================================================================= * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform * ----------------------------------------------------------------------------- * File: client/src/components/chat/tool-results.tsx * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Website: https://www.spboucher.ai * Demo: https://www.vquant.ai * License: MIT (see LICENSE) * * Copyright © 2026 Simon-Pierre Boucher. All rights reserved. * ============================================================================= */ interface ToolResult { tool: string; result: any; } interface ToolResultsProps { toolResults: ToolResult[]; pythonCode?: string; } export function ToolResults({ toolResults }: ToolResultsProps) { // Ne rien afficher - les steps sont déjà affichés par AgentSteps return null; }