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

# AmbientSessionStatus Type

> Status type for ambient sessions

## Type definition

Below is the type definition for the `AmbientSessionStatus` type. Use it to track the current state of a session and update your UI accordingly.

```tsx theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type AmbientSessionStatus = 
  | "created"
  | "submitted"
  | "completed"
  | "cancelled";
```
