gpt-researcher-ui
Version:
GPT Researcher frontend as a React component
11 lines (10 loc) • 385 B
TypeScript
import './index.css';
export interface GPTResearcherProps {
apiUrl?: string;
apiKey?: string;
defaultPrompt?: string;
onResultsChange?: (results: any) => void;
theme?: any;
}
export declare const GPTResearcher: ({ apiUrl, apiKey, defaultPrompt, onResultsChange, theme }: GPTResearcherProps) => import("react/jsx-runtime").JSX.Element;
export default GPTResearcher;