Update streaming counts (33 true / 25 false / 3 n-a)
Browse files
README.md
CHANGED
|
@@ -55,7 +55,7 @@ A directory name encodes four dimensions:
|
|
| 55 |
## Streaming vs non-streaming
|
| 56 |
|
| 57 |
**Do not infer this from the directory name.** Use `metadata.csv` at the repo root,
|
| 58 |
-
which carries an explicit `streaming` column for
|
| 59 |
|
| 60 |
```python
|
| 61 |
import pandas as pd
|
|
@@ -65,10 +65,9 @@ streamed = meta[meta.streaming == "true"].directory
|
|
| 65 |
|
| 66 |
| `streaming` | Dirs | Meaning |
|
| 67 |
|-------------|-----:|---------|
|
| 68 |
-
| `true`
|
| 69 |
-
| `false`
|
| 70 |
-
| `
|
| 71 |
-
| `n/a` | 3 | Non-LLM baseline (video); API streaming does not apply. |
|
| 72 |
|
| 73 |
Every row also carries `streaming_evidence`, naming the harness and code path the
|
| 74 |
label came from, so the classification is auditable rather than asserted.
|
|
|
|
| 55 |
## Streaming vs non-streaming
|
| 56 |
|
| 57 |
**Do not infer this from the directory name.** Use `metadata.csv` at the repo root,
|
| 58 |
+
which carries an explicit `streaming` column for every one of the 61 capture directories:
|
| 59 |
|
| 60 |
```python
|
| 61 |
import pandas as pd
|
|
|
|
| 65 |
|
| 66 |
| `streaming` | Dirs | Meaning |
|
| 67 |
|-------------|-----:|---------|
|
| 68 |
+
| `true` | 33 | Response was delivered incrementally (SSE / chunked token stream). |
|
| 69 |
+
| `false` | 25 | Whole response body delivered in one shot. |
|
| 70 |
+
| `n/a` | 3 | Non-LLM baseline (video); API streaming does not apply. |
|
|
|
|
| 71 |
|
| 72 |
Every row also carries `streaming_evidence`, naming the harness and code path the
|
| 73 |
label came from, so the classification is auditable rather than asserted.
|