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

# Projects

> Organize logs, traces & experiments into projects.

By default all logs, traces & [experiments](/evaluation/overview) are grouped in the `default` project. You can specify a project name when you
initialize the Parea client. This will automatically create a new project with that name if it didn't exist before.
Note, that the name of the project is only allowed to contain alphanumeric characters, dashes and underscores.

<CodeGroup>
  ```python python theme={null}
  from parea import Parea

  p = Parea(api_key=os.getenv("PAREA_API_KEY"), project_name='my-project')
  ```

  ```typescript typescript theme={null}
  import {Parea} from "parea-ai";

  const p = new Parea("PAREA_API_KEY", 'my-project');
  ```
</CodeGroup>

You can toggle between projects on the platform by clicking on the project name in the collapsible sidebar on the left.
