Share via

Is it possible using AI to populate json model based on text.

Oleksii Vasylenko 0 Reputation points
2023-06-24T16:00:04.3466667+00:00

I have simple task to understand. I have text, which describe automobile. Also I have json model:

{ brandName: "", brandNameDescription: "Car brand name like Audi, BMW etc." }

brandNameDescription - explains what should be inside brandName property.

Send this json + text to AI, and back get json

{

brandName: "Maseratti"

}

Which means text was about maseratti. I will build bigger json with more properties, and get extracted data from text, back from AI.

If it is possible with Azure Ai tools please help me to understand which tool to use, I will be very thanksful

Foundry Tools
Foundry Tools

Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform

0 comments No comments

2 answers

Sort by: Most helpful
  1. Edward Smith 0 Reputation points
    2025-02-09T13:21:05.62+00:00

    Yes, AI can turn text into a JSON model. It reads the text, extracts important information, and organizes it into a structured JSON format.

    Was this answer helpful?

    0 comments No comments

  2. YutongTie-9091 54,021 Reputation points Moderator
    2023-06-25T03:12:04.65+00:00

    Hello @Oleksii Vasylenko

    Thanks for reaching out to us, I think you can leverage Azure OpenAI Service - Completions to do it - https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/completions

    You can leverage both SDK or Azure OpenAI studio playground to do so.

    But to get access to Azure OpenAI, you need to apply for access - https://learn.microsoft.com/en-us/azure/cognitive-services/openai/overview#how-do-i-get-access-to-azure-openai

    Please take a look at it and let me know how it fits on your scenario.

    Regards,

    Yutong

    -Please kindly accept the answer and vote 'Yes' if you feel helpful to support the community, thanks a lot.

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.