What are the two primary benefits of using prompt caching?	It speeds up Clod's response and decreases the cost of text generation.
In a normal request without prompt caching, what happens to the internal calculations Clod performs on the input text after sending a response?	Clod throws away all the work and calculations.
What problem does prompt caching solve regarding follow-up requests?	It prevents Clod from having to repeat extensive internal work on messages it has already processed.
How does prompt caching improve the speed of text generation?	By allowing Clod to reuse previously saved analysis instead of re-analyzing the input message.
What is the core mechanism of prompt caching?	Saving the results of the initial analysis of a user message in a temporary data store.
What must be true about a follow-up request for Clod to successfully retrieve cached work?	The follow-up request must include the exact same input user message.
What is the internal process Clod performs on the input message before generating output text?	It creates a tremendous number of internal data structures and performs extensive calculations.
