src/Private/Report/AI/Get-MCSMetroAIAgent.ps1

function Get-MCSMetroAIAgent {
    Param($FoundryEndpoint)

    Set-MetroAIContext -Endpoint $FoundryEndpoint -ApiType Agent -Debug:$false

    Start-Sleep -Seconds 1

    $MetroAgent = Get-MetroAIAgent -Debug:$false

    return $MetroAgent

}