Live data from Hacker News

Architecting Secure Prompt Caching

tinfoil.sh

1–3 of 3 posts

Re: Architecting Secure Prompt Caching

#2
Good post, breaks down the threat models really well. =)

One small note, I think there may be a small issue in one of the code blocks explaining the client key:

> cache_namespace = tenant_id || client_secret

I believe that should say `tenant_id + client_secret`, ya? To append them together? If you OR them out it'll default to the `tenant_id`, which isn't what you want in this case, I believe.

Re: Architecting Secure Prompt Caching

#3
post #2

Good post, breaks down the threat models really well. =) One small note, I think there may be a small issue in one of the code blocks explaining the client key: > cache_namespace = tenant_id || client_secret I believe that should say `tenant_id + client_secret`, ya? To append them together? If you OR them out it'll default to the `tenant_id`, which isn't what you want in this case, I believe.

[dead]