Statement
Answer
Generative AI models predict the next token in a sequence based on patterns learned during training.
Yes
A system prompt can be used to influence the behavior and tone of the responses generated by a generative AI model.
Yes
Increasing the Temperature parameter makes the responses generated by generative AI models more deterministic and consistent.
No
Comprehensive and Detailed 150 to 250 words of Explanation From Azure AI Fundamentals/Course Guide/topics:
The first statement is Yes . Generative language models generate text autoregressively by estimating probabilities for the next token based on preceding context and patterns learned during model training. This next-token prediction mechanism is fundamental to how transformer-based generative models produce sequences of text.
The second statement is also Yes . A system prompt provides high-level instructions that establish how the model should behave. It can define role, response style, tone, constraints, and other behavioral expectations. The AI-901 study guide explicitly includes creating effective system and user prompts as part of implementing generative AI applications in Microsoft Foundry.
The third statement is No . Increasing Temperature does the opposite of making output more deterministic. Microsoft documents that higher temperature values increase randomness and output diversity, while lower values make responses more focused and predictable. At a temperature approaching zero, model selection becomes substantially more deterministic because higher-probability tokens are favored more strongly.
Submit