Skip to content

Latest commit

 

History

History
69 lines (43 loc) · 2.8 KB

File metadata and controls

69 lines (43 loc) · 2.8 KB

SmartDocs Azure Function

Overview

The SmartDocs Azure Function is designed to generate technical documentation and detailed reporting based on Azure resource metadata using Azure OpenAI. The function leverages managed authentication to access Azure services and consolidates resource metadata into an easily readable, automatically generated document.

Note

SmartDocs is an artifact designed to be tailored to specific client needs. Depending on requirements, aspects such as the document storage path and authentication/configuration details may need to be customized.

Requirements

Important

In the Consumption Plan, the function has a maximum runtime of 10 minutes. For larger workloads, use an App Service Plan with a higher SKU, such as Premium or Dedicated, to increase the allowable execution time.

  • Managed Identity configured with read access to the required resources (subscriptions, OpenAI for generating text and so on).

  • QUESTION_ENDPOINT Environment Variable: The Azure OpenAI endpoint for sending requests.

Example files for Function deployment

PowerShell Script for Invocation

Here is a PowerShell script to invoke the function using an HTTP POST request:
powershell
Copia codice
# Function app URL
$functionUrl = "https://smartdocsopenai.azurewebsites.net/api/smartdocs"

# Parameters to send
$body = @{
    tag_key = "Workload"
    tag_value = "Production"
}

# Invoke the Function App
$response = Invoke-RestMethod -Uri $functionUrl -Method Post -Body ($body | ConvertTo-Json) -ContentType "application/json"

# Output the response
$response

Azure Execution

Note

When planning to use this function for high workloads configure a Premium App Service Plan or higher to avoid time limitations. Monitor execution logs for potential issues related to timeouts or resource limits. Future Customizations

Support and Contributions

Contributions and enhancement requests are welcome! For any additional customization, feel free to open an issue or submit a pull request in this repository.