Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,14 @@ providers:
priority: 100 # Provider selection priority

# Debug
debug: true # Enable detailed logging
raw_debug: false # Enable raw API I/O logging
debug_truncate_length: 180 # Truncate long debug strings
raw: false # Attach exact request params to llm:request
```

`debug`, `raw_debug`, and `debug_truncate_length` are ghost keys from an
older version of this README -- they were never read by this provider.
Use `raw: true` to attach the exact request params sent to the server on
the `llm:request` event.

### Stream idle timeout

`stream_idle_timeout` bounds how long the provider waits **between streamed
Expand Down Expand Up @@ -354,12 +357,11 @@ The vLLM provider uses the **Responses API** (`/v1/responses`) which provides:

## Debugging

Enable debug logging to see full request/response details:
Enable `raw` to attach the exact request params to the `llm:request` event:

```yaml
config:
debug: true # Summary logging
raw_debug: true # Complete API I/O
raw: true # Attach exact request params sent to the server
```

**Check logs:**
Expand Down
Loading
Loading