✅ Fix chat interface - restore continuous conversation flow
🎯 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
This commit is contained in:
31
node_modules/openai/resources/containers/containers.mjs
generated
vendored
31
node_modules/openai/resources/containers/containers.mjs
generated
vendored
@@ -1,10 +1,9 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../core/resource.mjs";
|
||||
import { APIResource } from "../../resource.mjs";
|
||||
import { isRequestOptions } from "../../core.mjs";
|
||||
import * as FilesAPI from "./files/files.mjs";
|
||||
import { Files, } from "./files/files.mjs";
|
||||
import { CursorPage } from "../../core/pagination.mjs";
|
||||
import { buildHeaders } from "../../internal/headers.mjs";
|
||||
import { path } from "../../internal/utils/path.mjs";
|
||||
import { FileListResponsesPage, Files, } from "./files/files.mjs";
|
||||
import { CursorPage } from "../../pagination.mjs";
|
||||
export class Containers extends APIResource {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
@@ -19,24 +18,28 @@ export class Containers extends APIResource {
|
||||
/**
|
||||
* Retrieve Container
|
||||
*/
|
||||
retrieve(containerID, options) {
|
||||
return this._client.get(path `/containers/${containerID}`, options);
|
||||
retrieve(containerId, options) {
|
||||
return this._client.get(`/containers/${containerId}`, options);
|
||||
}
|
||||
/**
|
||||
* List Containers
|
||||
*/
|
||||
list(query = {}, options) {
|
||||
return this._client.getAPIList('/containers', (CursorPage), { query, ...options });
|
||||
if (isRequestOptions(query)) {
|
||||
return this.list({}, query);
|
||||
}
|
||||
return this._client.getAPIList('/containers', ContainerListResponsesPage, { query, ...options });
|
||||
}
|
||||
/**
|
||||
* Delete Container
|
||||
*/
|
||||
delete(containerID, options) {
|
||||
return this._client.delete(path `/containers/${containerID}`, {
|
||||
del(containerId, options) {
|
||||
return this._client.delete(`/containers/${containerId}`, {
|
||||
...options,
|
||||
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
||||
headers: { Accept: '*/*', ...options?.headers },
|
||||
});
|
||||
}
|
||||
}
|
||||
export class ContainerListResponsesPage extends CursorPage {
|
||||
}
|
||||
Containers.ContainerListResponsesPage = ContainerListResponsesPage;
|
||||
Containers.Files = Files;
|
||||
Containers.FileListResponsesPage = FileListResponsesPage;
|
||||
//# sourceMappingURL=containers.mjs.map
|
||||
Reference in New Issue
Block a user