You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pre-req - "Microsoft Foundry project" should be removed. I assumed I need to create a project manually before I start but a new project is actually created for me.
PowerShell Invoke-RestMethod hides nested response content — It displayed System.Object[] instead of the actual agent output. Fix: pipe through .output.content | ConvertTo-Json -Depth 5 to expand the nested objects and see the full text response. Recommend using this instead:
(Invoke-RestMethod -Method Post -Uri "http://localhost:8088/responses" -ContentType "application/json" -Body '{"input":"What is Microsoft Foundry?"}').output.content | ConvertTo-Json -Depth 5