UNPKG

gpt-researcher-ui

Version:

GPT Researcher frontend as a React component

9 lines (8 loc) 270 B
import React from 'react'; interface HumanFeedbackProps { websocket: WebSocket | null; onFeedbackSubmit: (feedback: string | null) => void; questionForHuman: boolean; } declare const HumanFeedback: React.FC<HumanFeedbackProps>; export default HumanFeedback;