Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Changed library name to canopy-sdk #138

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ more about virtual environments [here](https://docs.python.org/3/tutorial/venv.h

1. install the package
```bash
pip install pinecone-canopy
pip install canopy-sdk
```

2. Set up the environment variables
Expand Down
2 changes: 1 addition & 1 deletion docs/library.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ more about virtual environments [here](https://docs.python.org/3/tutorial/venv.h

1. install the package
```bash
pip install pinecone-canopy
pip install canopy-sdk
```

2. Set up the environment variables
Expand Down
2 changes: 1 addition & 1 deletion examples/canopy-lib-quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}
],
"source": [
"!pip install -qU pinecone-canopy"
"!pip install -qU canopy-sdk"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "pinecone-canopy"
name = "canopy-sdk"
version = "0.1.0"
description = "Canopy is an orchestration engine for intergating LLMs with Pinecone."
authors = ["Relevance Team <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/canopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import importlib.metadata

# Taken from https://stackoverflow.com/a/67097076
__version__ = importlib.metadata.version("pinecone-canopy")
__version__ = importlib.metadata.version("canopy-sdk")