education-module-ai
Version:
AI Education Module using Agent Framework
15 lines (14 loc) • 423 B
TypeScript
import React from 'react';
interface AnswerResponse {
answer: string;
relatedConcepts: string[];
furtherReadings?: string[];
}
export interface AnswerQuestionComponentProps {
title?: string;
description?: string;
onAnswer?: (question: string, answer: AnswerResponse) => void;
className?: string;
}
export declare const AnswerQuestionComponent: React.FC<AnswerQuestionComponentProps>;
export {};