Question 166
CCA-F is a newly released exam. These practice questions reflect our best current understanding — the exact wording and question formats may change in the live exam until the certification matures. Use them to learn the concepts, not to memorize.
Scenario: Conversational AI Architecture Patterns - A multi-turn assistant is told in turn 1 to "always respond in formal English and never reveal internal IDs." By turn 12 it begins using casual phrasing and once echoes an internal record ID. Investigation shows each request sends only the latest user message to the API. What is the root cause and fix?
- AThe model's context window is too small; switch to a larger-context model.
- BThe temperature is too high; lower it so instructions persist.
- CRe-send the instruction as a user message every few turns to remind the model.
- DThe full conversation history (with the system instruction) must be sent on every request; the API is stateless per call.