Merge pull request #3009 from YanzheL/fix/ollama-ndjson-markup

docs(ollama): fix NDJSON code block language identifier
This commit is contained in:
YeonGyu-Kim
2026-05-06 15:41:41 +09:00
committed by GitHub
+1 -1
View File
@@ -16,7 +16,7 @@ This occurs when agents attempt tool calls (e.g., `explore` agent using `mcp_gre
Ollama returns **NDJSON** (newline-delimited JSON) when `stream: true` is used in API requests:
```json
```ndjson
{"message":{"tool_calls":[{"function":{"name":"read","arguments":{"filePath":"README.md"}}}]}, "done":false}
{"message":{"content":""}, "done":true}
```