> For the complete documentation index, see [llms.txt](https://docs.causalchamber.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.causalchamber.ai/support/troubleshooting.md).

# Troubleshooting

<table><thead><tr><th width="298.512939453125">Error</th><th>Suggestion</th></tr></thead><tbody><tr><td><code>LabError: (code 1)</code>, i.e., could not connect to the API, <strong>with</strong> an <code>SSLError</code></td><td>See <a href="#connecting-from-a-corporate-network">connecting from a corporate network</a>.</td></tr><tr><td><code>UserError: (code 403) None</code><br><strong>without</strong> trace codes, i.e., =<code>None</code></td><td>Our firewall thinks you have bad intentions and is accidentally blocking your request. Please <a href="#reporting-errors">report the error</a> so we can help you.</td></tr><tr><td>Any other <code>LabError</code> or <code>UserError</code> <strong>with</strong> trace codes</td><td>See <a href="/pages/MlYVHKHo3lj60ewcZkfo">Error handling &#x26; support</a>.</td></tr><tr><td>Everything else</td><td>Reach us at <a href="mailto:support@causalchamber.ai">support@causalchamber.ai</a> or through any of the support channels provided during onboarding. We are happy to help :)</td></tr></tbody></table>

#### Reporting errors

{% hint style="info" %}
The best way to report an error is to send us the complete error trace, including the traceback and **trace codes**.
{% endhint %}

You can report an error through <support@causalchamber.ai> or any of the support channels provided during onboarding.

### Connecting from a corporate network

Firewalls in corporate networks often push their own root certificates for additional security. If you're connecting with your work computer from within a corporate network, e.g., office WiFi, you might see the following error:

{% code overflow="wrap" %}

```
LabError: (code 1) Could not connect to the API at https://api.causalchamber.ai/v0
...
Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate...
```

{% endcode %}

If this is the case, here's how to solve it

1. Visit <https://api.causalchamber.ai/health> with your **browser** to confirm the necessary certificates are installed on your computer. If they are, you should see a `scheduler_id`.
2. If that worked, you need to tell Python to use the right certificates. Run `pip install pip-system-certs` in the Python environment from which you are calling our API.

That should fix it. If it doesn't or you're stuck, please [report the error](#reporting-errors) so we can help you :)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.causalchamber.ai/support/troubleshooting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
