IntelligenceX
Cmdlet

Watch-IntelligenceXEvent

Namespace IntelligenceX.PowerShell
Inputs
IntelligenceX.OpenAI.IntelligenceXClient
Outputs
IntelligenceX.PowerShell.RpcNotificationRecord

Watches JSON-RPC notifications from the app-server.

Examples

Example 1


Watch-IntelligenceXEvent
        

Watch all events

Example 2


Watch-IntelligenceXEvent -Method "turn/delta"
        

Watch only turn deltas

Example 3


Watch-IntelligenceXEvent -Method "turn/delta","turn/completed","account/login/completed"
        

Watch multiple event types

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

Watch-IntelligenceXEvent [-Client <IntelligenceXClient>] [-Method <string[]>] [<CommonParameters>]
#

Parameters

Client IntelligenceXClient optionalposition: namedpipeline: true (ByValue)
Client instance to use. Defaults to the active client.
Method string[] optionalposition: namedpipeline: false
Optional JSON-RPC method filter list. Matching is case-insensitive.

Outputs

IntelligenceX.PowerShell.RpcNotificationRecord