form recognizer container billing metering gives 403 error

Kesavamurthi D 106 Reputation points
2024-05-30T14:11:15.0133333+00:00

we are trying to deploy the document intelligence container in Kubernetes and not in aks.

while starting the container , billing metering is giving 403 error .kindly guide us .

is it required to get approval from azure ai application for gated services .

Azure AI Document Intelligence
Azure AI Document Intelligence
An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
1,505 questions
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 43,656 Reputation points Microsoft Employee
    2024-05-31T14:52:00.7233333+00:00

    @Kesavamurthi D Any request for preview service is approved by gating team and they should reply to you on their decision based on the criteria set for approval/rejection.

    For invoice container try following this setup.

    https://video2.skills-academy.com/en-us/azure/ai-services/document-intelligence/containers/install-run?view=doc-intel-3.1.0&tabs=invoice

    The docker compose file is also available on the page, it requires the invoice model along with layout to support this feature.

    version: "3.9"
    services:
      azure-cognitive-service-invoice:
        container_name: azure-cognitive-service-invoice
        image: mcr.microsoft.com/azure-cognitive-services/form-recognizer/invoice-3.1
        environment:
            - EULA=accept
            - billing={FORM_RECOGNIZER_ENDPOINT_URI}
            - apiKey={FORM_RECOGNIZER_KEY}
            - AzureCognitiveServiceLayoutHost=http://azure-cognitive-service-layout:5000
        ports:
          - "5000:5050"
      azure-cognitive-service-layout:
        container_name: azure-cognitive-service-layout
        image: mcr.microsoft.com/azure-cognitive-services/form-recognizer/layout-3.1
        environment:
            - EULA=accept
            - billing={FORM_RECOGNIZER_ENDPOINT_URI}
            - apiKey={FORM_RECOGNIZER_KEY}
    
    
    

    If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.

    0 comments No comments