Remix.run Logo
nine_k 2 days ago

Sending two identical parallel requests is the classic approach. But, logically speaking, it should also double the cost.

I would send a second request if the first request fails to return the first token within, say, 1 second. Then there's a chance the first request is stalling, which is an infrequent event.

I wonder if higher-availability tiers of LLM providers do a similar thing internally.

ImPostingOnHN 2 days ago | parent [-]

Token caching might help here, but if it returns the same result, faster, for the same price as priority, seems good

awwaiid 2 days ago | parent [-]

I wonder how parallel token caches are, like when exploring a tree of sample continuations.