ISummarizerEvents Interface
To use, import via @fluidframework/container-runtime-definitions/legacy
.
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
/** @sealed */
export interface ISummarizerEvents extends IEvent
Extends: IEvent
Call Signatures
Call Signature Details
(event: "summarize", listener: (props: ISummarizeEventProps & ISummarizerObservabilityProps) => void): any
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
(event: "summarize", listener: (props: ISummarizeEventProps & ISummarizerObservabilityProps) => void): any;
(event: "summarizeAllAttemptsFailed", listener: (props: Omit<ISummarizeEventProps, "result"> & ISummarizerObservabilityProps) => void): any
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
(event: "summarizeAllAttemptsFailed", listener: (props: Omit<ISummarizeEventProps, "result"> & ISummarizerObservabilityProps) => void): any;
(event: "summarizerStop", listener: (props: { stopReason: SummarizerStopReason; error?: any; } & ISummarizerObservabilityProps) => void): any
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
(event: "summarizerStop", listener: (props: {
stopReason: SummarizerStopReason;
error?: any;
} & ISummarizerObservabilityProps) => void): any;
(event: "summarizerStart", listener: (props: { onBehalfOf: string; } & ISummarizerObservabilityProps) => void): any
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
(event: "summarizerStart", listener: (props: {
onBehalfOf: string;
} & ISummarizerObservabilityProps) => void): any;
(event: "summarizerStartupFailed", listener: (props: { reason: SummarizerStopReason; } & ISummarizerObservabilityProps) => void): any
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
(event: "summarizerStartupFailed", listener: (props: {
reason: SummarizerStopReason;
} & ISummarizerObservabilityProps) => void): any;