Troubleshooting
Quick fixes for common issues with the local AI development workbench.
Runs Not Appearing
Section titled “Runs Not Appearing”- Confirm SideSeat is running — you should see
Local: http://127.0.0.1:5388in the terminal - Check the OTLP endpoint — default is
http://localhost:5388/otel/default/v1/traces - Flush before exit — call
client.shutdown()(Python) orawait shutdown()(JavaScript) before the script exits
Port Already in Use
Section titled “Port Already in Use”If port 5388 is occupied:
sideseat --port 5390Update your SDK/OTLP endpoint to match.
Auth Issues
Section titled “Auth Issues”If the UI asks for a token or refuses to load:
- Open the tokenized URL printed at startup when auth is enabled
- Or disable auth locally:
sideseat --no-auth
Missing Tokens or Cost Data
Section titled “Missing Tokens or Cost Data”- Ensure the model ID is captured in
gen_ai.request.model - Use a recognized provider (OpenAI, Anthropic, Amazon Bedrock, Vertex, etc.)
Missing Tool Calls
Section titled “Missing Tool Calls”- Confirm your framework emits tool spans via OpenTelemetry
- Use the SideSeat SDK for best results with tool I/O normalization
Still Stuck?
Section titled “Still Stuck?”- API Reference — full endpoint documentation
- Integrations — framework and provider setup guides