MCPcopy Create free account
hub / github.com/Stylsheets/TaskEaseGPT / Delete

Method Delete

golang/internal/memory/memory/memory.go:107–120  ·  view source on GitHub ↗
(options *DeleteOptions)

Source from the content-addressed store, hash-verified

105type DeleteOutput struct{}
106
107func (pa *PineconeAdapter) Delete(options *DeleteOptions) (*DeleteOutput, error) {
108 _, err := pa.Client.Delete(&pinecone.DeleteRequest{
109 IDs: options.IDs,
110 DeleteAll: options.DeleteAll,
111 Namespace: options.Namespace,
112 Filter: options.Filter,
113 })
114
115 if err != nil {
116 return nil, err
117 }
118
119 return &DeleteOutput{}, nil
120}
121
122// Fetch
123

Callers

nothing calls this directly

Calls 1

DeleteMethod · 0.65

Tested by

no test coverage detected