✅ 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:
14
node_modules/openai/resources/fine-tuning/jobs/checkpoints.d.ts
generated
vendored
14
node_modules/openai/resources/fine-tuning/jobs/checkpoints.d.ts
generated
vendored
@@ -1,6 +1,6 @@
|
||||
import { APIResource } from "../../../core/resource.js";
|
||||
import { CursorPage, type CursorPageParams, PagePromise } from "../../../core/pagination.js";
|
||||
import { RequestOptions } from "../../../internal/request-options.js";
|
||||
import { APIResource } from "../../../resource.js";
|
||||
import * as Core from "../../../core.js";
|
||||
import { CursorPage, type CursorPageParams } from "../../../pagination.js";
|
||||
export declare class Checkpoints extends APIResource {
|
||||
/**
|
||||
* List checkpoints for a fine-tuning job.
|
||||
@@ -15,9 +15,11 @@ export declare class Checkpoints extends APIResource {
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
list(fineTuningJobID: string, query?: CheckpointListParams | null | undefined, options?: RequestOptions): PagePromise<FineTuningJobCheckpointsPage, FineTuningJobCheckpoint>;
|
||||
list(fineTuningJobId: string, query?: CheckpointListParams, options?: Core.RequestOptions): Core.PagePromise<FineTuningJobCheckpointsPage, FineTuningJobCheckpoint>;
|
||||
list(fineTuningJobId: string, options?: Core.RequestOptions): Core.PagePromise<FineTuningJobCheckpointsPage, FineTuningJobCheckpoint>;
|
||||
}
|
||||
export declare class FineTuningJobCheckpointsPage extends CursorPage<FineTuningJobCheckpoint> {
|
||||
}
|
||||
export type FineTuningJobCheckpointsPage = CursorPage<FineTuningJobCheckpoint>;
|
||||
/**
|
||||
* The `fine_tuning.job.checkpoint` object represents a model checkpoint for a
|
||||
* fine-tuning job that is ready to use.
|
||||
@@ -69,6 +71,6 @@ export declare namespace FineTuningJobCheckpoint {
|
||||
export interface CheckpointListParams extends CursorPageParams {
|
||||
}
|
||||
export declare namespace Checkpoints {
|
||||
export { type FineTuningJobCheckpoint as FineTuningJobCheckpoint, type FineTuningJobCheckpointsPage as FineTuningJobCheckpointsPage, type CheckpointListParams as CheckpointListParams, };
|
||||
export { type FineTuningJobCheckpoint as FineTuningJobCheckpoint, FineTuningJobCheckpointsPage as FineTuningJobCheckpointsPage, type CheckpointListParams as CheckpointListParams, };
|
||||
}
|
||||
//# sourceMappingURL=checkpoints.d.ts.map
|
||||
Reference in New Issue
Block a user