Skip to content

Commit 6d3bb85

Browse files
committed
Reference fixes
1 parent 13b256f commit 6d3bb85

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ This example is an HTTP triggered function that uses [HTTP streams](functions-re
418418

419419
:::code language="python" source="~/functions-python-extensions/azurefunctions-extensions-http-fastapi/samples/fastapi_samples_streaming_download/function_app.py" range="5-26" :::
420420

421-
To learn more, including how to enable HTTP streams in your project, see [HTTP streams](functions-bindings-http-webhook-trigger.md?tabs=python-v2&pivots=programming-language-python#http-streams).
421+
To learn more, including how to enable HTTP streams in your project, see [HTTP streams](functions-bindings-http-webhook-trigger.md?tabs=python-v2&pivots=programming-language-python#http-streams-1).
422422

423423
This example shows a trigger binding and a Python function that uses the binding. The function looks for a `name` parameter either in the query string or the body of the HTTP request.
424424

@@ -1016,7 +1016,7 @@ HTTP streams support in Python lets you accept and return data from your HTTP en
10161016
### Prerequisites
10171017

10181018
* [Azure Functions runtime](functions-versions.md?pivots=programming-language-python) version 4.34.1, or a later version.
1019-
* [Python](https://www.python.org/downloads/) version 3.8, or a later [supported version](#python-version).
1019+
* [Python](https://www.python.org/downloads/) version 3.8, or a later [supported version](functions-reference-python?tabs=get-started&pivots=python-mode-decorators#python-version).
10201020

10211021
### Enable HTTP streams
10221022

articles/azure-functions/functions-reference-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ HTTP streams lets you accept and return data from your HTTP endpoints using Fast
536536

537537
This feature makes it possible to handle large data stream, OpenAI integrations, deliver dynamic content, and support other core HTTP scenarios requiring real-time interactions over HTTP. You can also use FastAPI response types with HTTP streams. Without HTTP streams, the size of your HTTP requests and responses are limited by memory restrictions that can be encountered when processing entire message payloads all in memory.
538538

539-
To learn more, including how to enable HTTP streams in your project, see [HTTP Streams](functions-bindings-http-webhook-trigger.md?tabs=python-v2&pivots=programming-language-python#http-streams).
539+
To learn more, including how to enable HTTP streams in your project, see [HTTP Streams](functions-bindings-http-webhook-trigger.md?tabs=python-v2&pivots=programming-language-python#http-streams-1).
540540
::: zone pivot="python-mode-configuration"
541541
> [!IMPORTANT]
542542
> Support for HTTP streams requires the [Python v2 programming model](functions-reference-python.md?pivots=python-mode-decorators#http-streams).

0 commit comments

Comments
 (0)