Interface MemoryServiceAsync
-
- All Implemented Interfaces:
public interface MemoryServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceMemoryServiceAsync.WithRawResponseA view of MemoryServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract MemoryServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract MemoryServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<BetaManagedAgentsMemory> create(String memoryStoreId, MemoryCreateParams params)
Create a memory
-
create
CompletableFuture<BetaManagedAgentsMemory> create(String memoryStoreId, MemoryCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<BetaManagedAgentsMemory> create(MemoryCreateParams params)
-
create
abstract CompletableFuture<BetaManagedAgentsMemory> create(MemoryCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<BetaManagedAgentsMemory> retrieve(String memoryId, MemoryRetrieveParams params)
Retrieve a memory
-
retrieve
CompletableFuture<BetaManagedAgentsMemory> retrieve(String memoryId, MemoryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<BetaManagedAgentsMemory> retrieve(MemoryRetrieveParams params)
-
retrieve
abstract CompletableFuture<BetaManagedAgentsMemory> retrieve(MemoryRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<BetaManagedAgentsMemory> update(String memoryId, MemoryUpdateParams params)
Update a memory
-
update
CompletableFuture<BetaManagedAgentsMemory> update(String memoryId, MemoryUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<BetaManagedAgentsMemory> update(MemoryUpdateParams params)
-
update
abstract CompletableFuture<BetaManagedAgentsMemory> update(MemoryUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<MemoryListPageAsync> list(String memoryStoreId)
List memories
-
list
CompletableFuture<MemoryListPageAsync> list(String memoryStoreId, MemoryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<MemoryListPageAsync> list(String memoryStoreId, MemoryListParams params)
-
list
abstract CompletableFuture<MemoryListPageAsync> list(MemoryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<MemoryListPageAsync> list(MemoryListParams params)
-
list
CompletableFuture<MemoryListPageAsync> list(String memoryStoreId, RequestOptions requestOptions)
-
delete
CompletableFuture<BetaManagedAgentsDeletedMemory> delete(String memoryId, MemoryDeleteParams params)
Delete a memory
-
delete
CompletableFuture<BetaManagedAgentsDeletedMemory> delete(String memoryId, MemoryDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<BetaManagedAgentsDeletedMemory> delete(MemoryDeleteParams params)
-
delete
abstract CompletableFuture<BetaManagedAgentsDeletedMemory> delete(MemoryDeleteParams params, RequestOptions requestOptions)
-
-
-
-