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) 260 B
import React from "react"; import { GrokAgent } from "../../agent/grok-agent.js"; interface ApiKeyInputProps { onApiKeySet: (agent: GrokAgent) => void; } export default function ApiKeyInput({ onApiKeySet }: ApiKeyInputProps): React.JSX.Element; export {};