Hi Thomas Christof
Greetings & Welcome to Microsoft Q&A forum! Thanks for posting your query!
When configuring the Document Intelligence Service with Azure Cognitive Services Studio, the service endpoint is typically not set directly within the YML configuration file for Studio. Instead, the endpoint is often managed through environment variables or programmatically within your code. To configure the endpoint, you can set environment variables like AZURE_FORM_RECOGNIZER_ENDPOINT
or AZURE_COGNITIVE_SERVICES_ENDPOINT
, which are recognized by the Azure SDKs and tools for authentication and interaction with the service. If you are using the Azure SDK, you can directly include the endpoint in your client configuration, as seen in example code where the endpoint and API key are passed to the DocumentAnalysisClient
. Additionally, for API calls, the endpoint is typically provided as part of the request rather than relying on the Studio configuration. To ensure that the correct endpoint is used, verify that the appropriate environment variables are set or that the endpoint is directly included in your code or API calls.
Hope this helps. Do let us know if you have any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful.