You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/openai/includes/language-overview/python.md
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,55 @@ For more examples, see the [Responses API](../../how-to/responses.md) documentat
324
324
325
325
# [Response](#tab/python-output)
326
326
327
+
```markdown
328
+
Here is a summary of Azure Functions based on official Microsoft documentation:
329
+
330
+
## What is Azure Functions?
331
+
Azure Functions is a serverless compute service that enables you to run event-driven code without managing infrastructure. You write code in your preferred language—such as C#, Java, JavaScript, PowerShell, or Python—and Azure Functions handles the hosting, scaling, and maintenance for you. You pay only for the compute time you consume, making it cost-effective for many use cases.
332
+
333
+
- **Official overview:** [What is Azure Functions?](https://learn.microsoft.com/en-us/azure/azure-functions/functions-overview)
334
+
335
+
## Key Scenarios for Azure Functions
336
+
Azure Functions supports a wide range of cloud application scenarios, including:
337
+
338
+
- Processing file uploads from blob storage.
339
+
- Real-time stream and event processing (IoT, analytics).
- Creating reliable message processing systems (with queues, Service Bus, Event Hubs).
346
+
347
+
Read more about scenarios here: [Azure Functions scenarios](https://learn.microsoft.com/en-us/azure/azure-functions/functions-scenarios).
348
+
349
+
## How It Works
350
+
- **Triggers and Bindings:** Functions are executed by triggers (events like HTTP requests, file uploads, timers, etc.) and can use bindings to automatically interact with other Azure services.
351
+
- **Coding:** Write only the code you need for business logic; Azure Functions integrates with IDEs like Visual Studio and VS Code for development and debugging.
352
+
- **Monitoring:** Built-in integration with Azure Monitor and Application Insights.
353
+
- **Hosting plans:** Choose serverless (Consumption plan), Premium, Dedicated, or deploy in custom containers.
354
+
355
+
## Getting Started
356
+
You can create your first Azure Function quickly using:
357
+
358
+
- [Azure CLI or Developer CLI](https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-azure-developer-cli)
359
+
- [Visual Studio Code](https://learn.microsoft.com/en-us/azure/azure-functions/how-to-create-function-vs-code)
See quickstarts for all languages: [Getting started with Azure Functions](https://learn.microsoft.com/en-us/azure/azure-functions/functions-get-started)
0 commit comments