Skip to content

Commit 5e6b9c4

Browse files
committed
update
1 parent cf52ddf commit 5e6b9c4

File tree

1 file changed

+49
-0
lines changed
  • articles/ai-foundry/openai/includes/language-overview

1 file changed

+49
-0
lines changed

articles/ai-foundry/openai/includes/language-overview/python.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,55 @@ For more examples, see the [Responses API](../../how-to/responses.md) documentat
324324

325325
# [Response](#tab/python-output)
326326

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).
340+
- Executing AI and machine learning inference.
341+
- Running scheduled tasks or background jobs.
342+
- Building scalable web APIs with HTTP endpoints.
343+
- Orchestrating serverless workflows (using Durable Functions).
344+
- Responding to data or database changes.
345+
- 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)
360+
- [Visual Studio](https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-your-first-function-visual-studio)
361+
362+
See quickstarts for all languages: [Getting started with Azure Functions](https://learn.microsoft.com/en-us/azure/azure-functions/functions-get-started)
363+
364+
## Supported Languages
365+
- Native: C#, Java, JavaScript, PowerShell, Python
366+
- With custom handlers: Go, Rust, and more
367+
368+
## Learn More
369+
- [Overview of Azure Functions](https://learn.microsoft.com/en-us/azure/azure-functions/functions-overview)
370+
- [Supported languages](https://learn.microsoft.com/en-us/azure/azure-functions/supported-languages)
371+
- [Triggers and bindings](https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings)
372+
373+
Let me know if you’re looking for step-by-step tutorials, specific language samples, or deeper technical details!
374+
```
375+
327376
---
328377

329378

0 commit comments

Comments
 (0)