UNPKG

@vibe-kit/grok-cli

Version:

An open-source AI agent that brings the power of Grok directly into your terminal.

8 lines (7 loc) 238 B
import React from 'react'; import { ConversationalAgent } from '../agent/conversationalAgent'; interface Props { agent: ConversationalAgent; } export default function ConversationalApp({ agent }: Props): React.JSX.Element; export {};