Skip to main content

CoreEventLoopStarted Interface

An EventFlowDebugEvent for signaling the start of the ai-collab's core event loop. Which makes various calls to the LLM to eventually apply edits to the users SharedTree which accomplish the user's provided goal. There will be exactly 1 of these events per ai-collab function execution.

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/ai-collab/alpha.

For more information about our API support guarantees, see here.

Signature

export interface CoreEventLoopStarted extends EventFlowDebugEvent

Extends: EventFlowDebugEvent

Properties

Property Alerts Type Description
eventFlowName Alpha typeof EventFlowDebugNames.CORE_EVENT_LOOP
eventFlowStatus Alpha "STARTED"
eventName Alpha "CORE_EVENT_LOOP_STARTED"

Property Details

eventFlowName

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

eventFlowName: typeof EventFlowDebugNames.CORE_EVENT_LOOP;

Type: typeof EventFlowDebugNames.CORE_EVENT_LOOP

eventFlowStatus

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

eventFlowStatus: "STARTED";

Type: "STARTED"

eventName

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

eventName: "CORE_EVENT_LOOP_STARTED";

Type: "CORE_EVENT_LOOP_STARTED"