style(docs): format ollama provider doc (#9870)

This commit is contained in:
Darshil
2026-02-05 16:26:52 -08:00
parent 6b042a2187
commit fa5728817f

View File

@@ -185,12 +185,12 @@ To opt in to streaming for a specific Ollama model, configure:
models: {
"ollama/gpt-oss:20b": {
params: {
streaming: true
}
}
}
}
}
streaming: true,
},
},
},
},
},
}
```
@@ -203,12 +203,12 @@ You can also disable streaming for other providers via the same `params.streamin
models: {
"openai/gpt-4": {
params: {
streaming: false
}
}
}
}
}
streaming: false,
},
},
},
},
},
}
```
@@ -272,12 +272,12 @@ Set the model back to non-streaming:
models: {
"ollama/gpt-oss:20b": {
params: {
streaming: false
}
}
}
}
}
streaming: false,
},
},
},
},
},
}
```