Skip to content

Commit

Permalink
Expose an InferenceDisplayability enum (#988)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-c authored Oct 3, 2023
1 parent 6774091 commit 9dfa6ff
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions js/src/lib/interfaces/InferenceDisplayability.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export enum InferenceDisplayability {
/**
* Yes
*/
Yes = "Yes",
/**
* And then, all the possible reasons why it's no:
*/
ExplicitOptOut = "ExplicitOptOut",
CustomCode = "CustomCode",
LibraryNotDetected = "LibraryNotDetected",
PipelineNotDetected = "PipelineNotDetected",
PipelineLibraryPairNotSupported = "PipelineNotSupportedInLibrary",
}

0 comments on commit 9dfa6ff

Please sign in to comment.