Skip to content

Commit

Permalink
remove spurious semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
evalstate committed Jan 7, 2025
1 parent 46f8b2f commit 050e268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -822,14 +822,14 @@ export interface Annotated {
annotations?: {
/**
* Describes who the intended customer of this object or data is.
*
*
* It can include multiple entries to indicate content useful for multiple audiences (e.g., `["user", "assistant"]`).
*/
audience?: Role[];

/**
* Describes how important this data is for operating the server.
*
*
* A value of 1 means "most important," and indicates that the data is
* effectively required, while 0 means "least important," and indicates that
* the data is entirely optional.
Expand All @@ -839,7 +839,7 @@ export interface Annotated {
* @maximum 1
*/
priority?: number;
};
}
}

/**
Expand Down

0 comments on commit 050e268

Please sign in to comment.