> ## Documentation Index
> Fetch the complete documentation index at: https://podonos.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> How to troubleshoot issues you are facing while using Podonos' service and SDK.

<Accordion title="You followed the examples, but you get an error">
  I am sorry to hear that. Please feel free to contact us at [hello@podonos.com](mailto:hello@podonos.com)
</Accordion>

<Accordion title="The example is not sufficient to do what you want">
  Please feel free to let us know the details at [hello@podonos.com](mailto:hello@podonos.com)
</Accordion>

<Accordion title="File upload is too slow.">
  There could be multiple reasons for the slow upload. First, please increase `max_upload_workers` when creating an `Evaluator` object.

  ```python python theme={null}
  etor = client.create_evaluator(
      name='Custom Naturalness Evaluation',
      desc='My own question', type='NMOS', num_eval=10,
      max_upload_workers=30)
  ```
</Accordion>
