skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-ai-formrecognizer-java

Document analysis and form extraction

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-ai-formrecognizer-java

Overview

What This Skill Does

Azure AI Document Intelligence (Form Recognizer) SDK for Java lets you extract structured data from documents using prebuilt models for receipts, invoices, IDs, and tax forms, or custom models you train on your own data. It handles layout extraction, key-value pairs, tables, and document classification.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure AI Document Intelligence SDK for Java

Rebranding: Azure AI Form Recognizer is now Azure AI Document Intelligence. New projects should use com.azure:azure-ai-documentintelligence. The legacy azure-ai-formrecognizer package targets API version 2023-07-31 only. See Migration Guide.

Before Implementation

Search microsoft-docs MCP for current API patterns:

  • Query: "azure-ai-documentintelligence Java SDK"
  • Verify: Parameters match installed SDK version (latest GA: 1.0.7)

Installation

<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-ai-documentintelligence</artifactId>
    <version>1.0.0</version>
</dependency>

<!-- For DefaultAzureCredential -->
<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-identity</artifactId>
    <version>1.14.2</version>
</dependency>
Lines 1 - 28 of 351

Recommendations

Explore other random skills

All skillsMy patterns