Skip to content

Commit cae25dd

Browse files
committed
Update references to GPT-4o
1 parent b33c61c commit cae25dd

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

samples/dotnet/classification/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ This folder contains samples that demonstrate how to classify documents using Az
44

55
| Sample | Description | Example Use Cases |
66
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- |
7-
| [Vision-based Classification with Azure OpenAI GPT-4o](./document-classification-gpt-vision.ipynb) | Use Azure OpenAI GPT-4o models to classify documents using their built-in vision capabilities. | Processing multiple documents types or documents with varying purposes, such as contracts, legal documents, and emails. |
7+
| [Vision-based Classification with Azure OpenAI GPT-4.1](./document-classification-gpt-vision.ipynb) | Use Azure OpenAI GPT-4.1 models to classify documents using their built-in vision capabilities. | Processing multiple documents types or documents with varying purposes, such as contracts, legal documents, and emails. |
88
| [Semantic Similarity Classification with Vector Embeddings](./document-classification-text-embeddings.ipynb) | Use Azure OpenAI embedding models to convert document text and classify them based on similarity to pre-defined classification lists | Processing multiple documents types or documents with varying purposes, such as contracts, legal documents, and emails. |

samples/dotnet/extraction/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ This folder contains samples that demonstrate how to extract structured data fro
55
> [!NOTE]
66
> All data extraction samples provide both an accuracy and confidence score for the extracted data. The accuracy score is calculated based on the similarity between the extracted data and the ground truth data. The confidence score can be calculated based on OCR analysis confidence and `logprobs` in Azure OpenAI responses.
77
8-
| Sample | Description | Example Use Cases |
9-
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
10-
| [Text-based Extraction with Azure AI Document Intelligence and Azure OpenAI GPT-4o](./text/document-extraction-gpt.ipynb) | Use Azure AI Document Intelligence `prebuilt-layout` and Azure OpenAI GPT models to extract structured data from documents using text. | Predominantly text-based documents such as invoices, receipts, and forms. |
11-
| [Text-based Extraction with Azure AI Document Intelligence and Microsoft Phi](./text/document-extraction-phi.ipynb) | Use Azure AI Document Intelligence `prebuilt-layout` and Microsoft's Phi models to extract structured data from documents using text. | Predominantly text-based documents such as invoices, receipts, and forms. |
12-
| [Vision-based Extraction with Azure OpenAI GPT-4o](./vision/document-extraction-gpt-vision.ipynb) | Use Azure OpenAI GPT-4o models to extract structured data from documents using vision capabilities. | Complex documents with a mix of text and images, including diagrams, signatures, selection marks, etc. such as reports and contracts. |
13-
| [Multi-Modal (Text and Vision) Extraction with Azure AI Document Intelligence and Azure OpenAI GPT-4o](./multimodal/document-extraction-gpt-text-and-vision.ipynb) | Improve the accuracy and confidence in extracting structured data from documents by combining text and images with LLMs. | Any structured or unstructured document type. |
8+
| Sample | Description | Example Use Cases |
9+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
10+
| [Text-based Extraction with Azure AI Document Intelligence and Azure OpenAI GPT-4.1](./text/document-extraction-gpt.ipynb) | Use Azure AI Document Intelligence `prebuilt-layout` and Azure OpenAI GPT models to extract structured data from documents using text. | Predominantly text-based documents such as invoices, receipts, and forms. |
11+
| [Text-based Extraction with Azure AI Document Intelligence and Microsoft Phi](./text/document-extraction-phi.ipynb) | Use Azure AI Document Intelligence `prebuilt-layout` and Microsoft's Phi models to extract structured data from documents using text. | Predominantly text-based documents such as invoices, receipts, and forms. |
12+
| [Vision-based Extraction with Azure OpenAI GPT-4.1](./vision/document-extraction-gpt-vision.ipynb) | Use Azure OpenAI GPT-4.1 models to extract structured data from documents using vision capabilities. | Complex documents with a mix of text and images, including diagrams, signatures, selection marks, etc. such as reports and contracts. |
13+
| [Multi-Modal (Text and Vision) Extraction with Azure AI Document Intelligence and Azure OpenAI GPT-4.1](./multimodal/document-extraction-gpt-text-and-vision.ipynb) | Improve the accuracy and confidence in extracting structured data from documents by combining text and images with LLMs. | Any structured or unstructured document type. |

samples/python/modules/samples/app_settings.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ class AppSettings:
66
azure_resource_group: The name of the resource group.
77
azure_storage_account_name: The name of the storage account.
88
azure_ai_services_endpoint: The endpoint for the AI services.
9-
azure_openai_endpoint: The endpoint for the OpenAI service.
10-
azure_openai_chat_deployment: The name of the GPT-4o model deployment.
11-
azure_openai_text_embedding_deployment: The name of the text embedding model deployment.
12-
azure_ai_phi_endpoint: The endpoint for the Phi deployment.
13-
azure_ai_phi_primary_key: The primary key for the Phi deployment.
9+
azure_openai_endpoint: The endpoint for the Azure OpenAI service.
10+
azure_openai_chat_deployment: The name of the Azure OpenAI chat model deployment.
11+
azure_openai_text_embedding_deployment: The name of the Azure OpenAI text embedding model deployment.
12+
azure_ai_phi_endpoint: The endpoint for the Azure AI Foundry Phi deployment.
13+
azure_ai_phi_primary_key: The primary key for the Azure AI Foundry Phi deployment.
1414
"""
1515

1616
def __init__(self, config: dict):

0 commit comments

Comments
 (0)