Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepy
linenumberstrue

...

pip install pinecone-client
import pinecone
pinecone.init(api_key=">>>YOUR_API_KEY<<<", environment="us-west1-gcp")
pinecone.create_index("hello-pinecone", index_type="approximated", dimension=8, metric="euclidean")
pinecone.list_indexes()
# Returns:
# ['hello-pinecone']
...

Summary


We introduce embedded Milvus in this MEP.
With embedded Milvus, you just need a clean environment with Python installed. You can then just do:

...