Skip to content

Commit

Permalink
feat: optional intents and slots in version model (RUN-523) (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanasar Janjughazyan committed Jan 13, 2025
1 parent c5d7f0f commit c0e33ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/base-types/src/models/version/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export interface Folder {

export interface NLUModel {
modelID?: string;
slots: Slot[];
intents: Intent[];
slots?: Slot[];
intents?: Intent[];
}

export type DefaultStepColors = Partial<Record<NodeType, string>>;
Expand Down

0 comments on commit c0e33ba

Please sign in to comment.