import { InputForm } from "./InputForm"; interface WelcomeScreenProps { handleSubmit: ( submittedInputValue: string, effort: string, model: string ) => void; onCancel: () => void; isLoading: boolean; } export const WelcomeScreen: React.FC = ({ handleSubmit, onCancel, isLoading, }) => (

Welcome.

How can I help you today?

Powered by Google Gemini and LangChain LangGraph.

);