C_AIG_2412 · Question #5
You want to extract useful information from customer emails to augment existing applications in your company. How can you use generative-ai-hub-sdk in this context?
The correct answer is B. Generate JSON strings based on extracted information. Option B is correct because generative-ai-hub-sdk is designed to interact with large language models (LLMs) that can parse unstructured text - like customer emails - and extract structured data. Generating JSON from extracted information (names, intent, order numbers…
Question
You want to extract useful information from customer emails to augment existing applications in your company. How can you use generative-ai-hub-sdk in this context?
Options
- AGenerate a new SAP application based on the mail data.
- BGenerate JSON strings based on extracted information.
- CGenerate random email content and send them to customers.
- DTrain custom models based on the mail data.
How the community answered
(28 responses)- A4% (1)
- B75% (21)
- C11% (3)
- D11% (3)
Explanation
Option B is correct because generative-ai-hub-sdk is designed to interact with large language models (LLMs) that can parse unstructured text - like customer emails - and extract structured data. Generating JSON from extracted information (names, intent, order numbers, sentiments, etc.) is the ideal output format for augmenting existing applications, since JSON integrates cleanly into APIs, databases, and business logic.
Why the distractors are wrong:
- A - The SDK invokes existing foundation models; it doesn't generate SAP applications from email data. That's outside its purpose.
- C - Generating and sending random emails is neither a use case for the SDK nor useful - and would likely violate customer trust.
- D - The SDK is for inference (calling pre-trained models), not training custom models. Training requires a different toolchain (e.g., ML pipelines, not an inference SDK).
Memory tip: Think of generative-ai-hub-sdk as a reader and extractor, not a builder or trainer. Its job is to call an LLM, get structured output (JSON), and hand it to your app - the keyword is extract → structure → augment.
Topics
Community Discussion
No community discussion yet for this question.