io.cequence.pineconescala.service.PineconeIndexService
Central service to access all Pinecone vector operations/endpoints as defined at the API ref. page
The following services are supported:
'''Collection Operations''': listCollections, createCollection, describeCollection, and
deleteCollection
'''Index Operations''': listIndexes, creatIndex, describeIndex, deleteIndex, and
configureIndex
Attributes Since: Apr
2023
Graph Reset zoom Hide graph Show graph
Supertypes trait CloseableService
class Object
trait Matchable
class Any
Known subtypes Members list Concise view
Type members
Attributes Inherited from: PineconeServiceConsts Graph Reset zoom Hide graph Show graph
Supertypes class Object
trait Matchable
class Any
Value members
This operation creates a Pinecone index. You can use it to specify the measure of
similarity, the dimension of vectors to be stored in the index, the numbers of replicas to
use, and more.
This operation creates a Pinecone index. You can use it to specify the measure of
similarity, the dimension of vectors to be stored in the index, the numbers of replicas to
use, and more.
Attributes dimension The dimensions of the vectors to be inserted in the index
name The name of the index to be created. The maximum length is 45 characters.
settings The settings for the index
Returns: Whether the index was created successfully or not.
See also:
This operation deletes an existing collection.
This operation deletes an existing collection.
Attributes collectionName The name of the collection
Returns: Whether the collection was deleted successfully or not found.
See also:
This operation deletes an existing index.
This operation deletes an existing index.
Attributes indexName The name of the index
Returns: Whether the index was deleted successfully or not found.
See also:
Get a description of a collection.
Get a description of a collection.
Attributes collectionName The name of the collection
Returns: Configuration information and deployment status of the collection (if found)
See also:
Get a description of an index.
Get a description of an index.
Attributes indexName The name of the index
Returns: Configuration information and deployment status of the index (if found)
See also:
This operation returns a list of your Pinecone indexes.
This operation returns a list of your Pinecone indexes.
Attributes Returns: List of indexes associated with the account (API key)
See also:
Closes the underlying ws client, and releases all its resources.
Closes the underlying ws client, and releases all its resources.
Attributes Inherited from: CloseableService