🎯 Major improvements to MissionControl component: - Always keep input field visible and functional after AI responses - Auto-clear input after submitting questions for better UX - Add dynamic visual indicators (first question vs follow-up) - Improve response layout with clear separation and hints - Enable proper chat-like experience for continuous learning 🌟 Additional enhancements: - Better language-specific messaging throughout interface - Clearer visual hierarchy between input and response areas - Intuitive flow that guides users to ask follow-up questions - Maintains responsive design and accessibility 🔧 Technical changes: - Enhanced MissionControl state management - Improved component layout and styling - Better TypeScript integration across components - Updated tsconfig for stricter type checking
24 lines
1.0 KiB
JavaScript
24 lines
1.0 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../../resource.mjs";
|
|
import * as AssistantsAPI from "./assistants.mjs";
|
|
import * as ChatAPI from "./chat/chat.mjs";
|
|
import { Assistants, AssistantsPage, } from "./assistants.mjs";
|
|
import * as RealtimeAPI from "./realtime/realtime.mjs";
|
|
import { Realtime, } from "./realtime/realtime.mjs";
|
|
import * as ThreadsAPI from "./threads/threads.mjs";
|
|
import { Threads, } from "./threads/threads.mjs";
|
|
import { Chat } from "./chat/chat.mjs";
|
|
export class Beta extends APIResource {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.realtime = new RealtimeAPI.Realtime(this._client);
|
|
this.chat = new ChatAPI.Chat(this._client);
|
|
this.assistants = new AssistantsAPI.Assistants(this._client);
|
|
this.threads = new ThreadsAPI.Threads(this._client);
|
|
}
|
|
}
|
|
Beta.Realtime = Realtime;
|
|
Beta.Assistants = Assistants;
|
|
Beta.AssistantsPage = AssistantsPage;
|
|
Beta.Threads = Threads;
|
|
//# sourceMappingURL=beta.mjs.map
|