import React from 'react' import { Throttling } from '@/lib/bots/bing/types' export interface TurnCounterProps { throttling?: Throttling } export function TurnCounter({ throttling }: TurnCounterProps) { if (!throttling) { return null } return (
{throttling.numUserMessagesInConversation} {throttling.maxNumUserMessagesInConversation}
) }