Interface MemoryService.WithRawResponse
-
- All Implemented Interfaces:
public interface MemoryService.WithRawResponseA view of MemoryService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MemoryService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> create(String memoryStoreId, MemoryCreateParams params)
Returns a raw HTTP response for
post /v1/memory_stores/{memory_store_id}/memories?beta=true, but is otherwise the same as MemoryService.create.
-
create
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> create(String memoryStoreId, MemoryCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> create(MemoryCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemory> create(MemoryCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> retrieve(String memoryId, MemoryRetrieveParams params)
Returns a raw HTTP response for
get /v1/memory_stores/{memory_store_id}/memories/{memory_id}?beta=true, but is otherwise the same as MemoryService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> retrieve(String memoryId, MemoryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> retrieve(MemoryRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemory> retrieve(MemoryRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> update(String memoryId, MemoryUpdateParams params)
Returns a raw HTTP response for
post /v1/memory_stores/{memory_store_id}/memories/{memory_id}?beta=true, but is otherwise the same as MemoryService.update.
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> update(String memoryId, MemoryUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemory> update(MemoryUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemory> update(MemoryUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<MemoryListPage> list(String memoryStoreId)
Returns a raw HTTP response for
get /v1/memory_stores/{memory_store_id}/memories?beta=true, but is otherwise the same as MemoryService.list.
-
list
@MustBeClosed() HttpResponseFor<MemoryListPage> list(String memoryStoreId, MemoryListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<MemoryListPage> list(String memoryStoreId, MemoryListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<MemoryListPage> list(MemoryListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<MemoryListPage> list(MemoryListParams params)
-
list
@MustBeClosed() HttpResponseFor<MemoryListPage> list(String memoryStoreId, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemory> delete(String memoryId, MemoryDeleteParams params)
Returns a raw HTTP response for
delete /v1/memory_stores/{memory_store_id}/memories/{memory_id}?beta=true, but is otherwise the same as MemoryService.delete.
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemory> delete(String memoryId, MemoryDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemory> delete(MemoryDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsDeletedMemory> delete(MemoryDeleteParams params, RequestOptions requestOptions)
-
-
-
-