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.
- Azure OpenAI-CoreIntegration Landing Zone deployed
- A Default Consumption Function App will be deployed with the foundation ARM Template
- OpenAI in place, always deployed with the foundation ARM Template
- A local environment ready for deploy the Function App to azure. Follow the instruction here.
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.
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
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