Performing pdf file search using Azure OpenAI GPT 4o

Sachin Chaudhari 0 Reputation points
2024-07-25T08:23:01.1233333+00:00

I have an Azure OpenAI instance and have procured GPT 4o, but I cannot find a file search type available for PDF files. How can I use GPT 4o for searching PDF files? I have tried using other search methods, but they did not meet my needs. I'm looking for specific guidance on how to use GPT 4o for PDF file search.

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
865 questions
Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
2,639 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sedat SALMAN 13,345 Reputation points
    2024-07-25T11:20:05.4333333+00:00

    you can use Azure Blob Storage to store PDF files and then

    https://learn.microsoft.com/en-us/azure/storage/blobs/

    then

    use Azure Cognitive Search to index your Blob Storage

    https://learn.microsoft.com/en-us/azure/search/

    extract data from PDF files and index them

    then

    Write a script or application that queries the Azure Cognitive Search index and sends the results to GPT-4o for further processing.

    https://learn.microsoft.com/en-us/azure/cognitive-services/openai/

    0 comments No comments