Skip to content

Commit 54b055b

Browse files
authored
Apply suggestions from code review
1 parent 05a98bc commit 54b055b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/operate/rc/langcache/use-langcache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ POST https://[host]/v1/caches/{cacheId}/entries
9090

9191
Place this call in your client app after you get a response from the LLM. This will store the response in the cache for future use.
9292

93-
You can also store the responses with custom attributes by adding an `attributes` object to the request. To store a response with one or more of the default attributes, use the `scope` object instead.
93+
You can also store the responses with custom attributes by adding an `attributes` object to the request.
9494

9595
```sh
9696
POST https://[host]/v1/caches/{cacheId}/entries
@@ -107,7 +107,7 @@ POST https://[host]/v1/caches/{cacheId}/entries
107107

108108
Use `DELETE /v1/caches/{cacheId}/entries/{entryId}` to delete a cached response from the cache.
109109

110-
You can also use `DELETE /v1/caches/{cacheId}/entries` to delete multiple cached responses at once. If you provide an `attributes` object or `scope` object, LangCache will delete all responses that match the attributes you specify.
110+
You can also use `DELETE /v1/caches/{cacheId}/entries` to delete multiple cached responses at once. If you provide an `attributes` object, LangCache will delete all responses that match the attributes you specify.
111111

112112
```sh
113113
DELETE https://[host]/v1/caches/{cacheId}/entries

0 commit comments

Comments
 (0)