import React from 'react'; interface ConfigInfoMessageProps { show: boolean; } export const ConfigInfoMessage: React.FC = ({ show }) => { if (!show) return null; return (

Request/Response Data Not Available

To view request and response details, enable prompt storage in your LiteLLM configuration by adding the following to your proxy_config.yaml file:

{`general_settings:
  store_model_in_db: true
  store_prompts_in_spend_logs: true`}
        

Note: This will only affect new requests after the configuration change.

); };