QuestionQ20

Solution Design & Architecture

For each statement, select Yes if it reflects a sound architectural practice. Otherwise, select No.

Yes or No
StatementsYesNo
Authentication and authorization run before retrieval so retrieval can filter by identity.
An asynchronous queue absorbs bursty traffic between intake and the model invocation layer.
Tax computation is encoded directly in the system prompt rather than in code.
Conversation logs include unredacted government identifiers to maximize signal for tuning.
Explanation

Authorization before retrieval enables identity-based access filtering. Queues smooth burst traffic and decouple request intake from asynchronous model processing. Tax calculations require deterministic, testable application logic rather than prompt behavior. Government identifiers are sensitive PII, so logs should redact or mask them and restrict their use.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!