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

# Troubleshooting

## Build Errors

### "cannot find crate pryveo-sdk"

```toml theme={null}
[dependencies]
pryveo-sdk = { path = "../pryveo-sdk" }
```

### "target 'wasm32-wasip1' not found"

```bash theme={null}
rustup target add wasm32-wasip1
```

### "error loading target specification"

```bash theme={null}
cargo build --target wasm32-wasip1 --release
```

## Runtime Errors

### "Permission denied"

* Add required permission to `manifest.json`.
* Reinstall app after permission changes.

### "No model loaded"

* Download a model in the Pryveo Model Dashboard.

### "Vector store error"

* Ensure `embeddings` permission is granted.
* Verify that documents were indexed.

## CLI Issues

### "pryveo: command not found"

```bash theme={null}
cargo install --path pryveo-cli
export PATH="$PATH:/path/to/pryveo-cli/target/release"
```

### "WASM binary not found"

```bash theme={null}
pryveo build --release
cargo build --target wasm32-wasip1 --release
```
