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

update incorrect pinecone quick start pathname #168

Merged
merged 1 commit into from
Nov 12, 2023
Merged
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
4 changes: 2 additions & 2 deletions src/canopy_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def validate_connection():
f"{str(e)}\n"
"Credentials should be set by the PINECONE_API_KEY and PINECONE_ENVIRONMENT"
" environment variables. "
"Please visit https://www.pinecone.io/docs/quick-start/ for more details."
"Please visit https://www.pinecone.io/docs/quickstart/ for more details."
)
raise CLIError(msg)
try:
Expand Down Expand Up @@ -284,7 +284,7 @@ def upsert(index_name: str,
if "credentials" in msg:
msg += ("\nCredentials should be set by the PINECONE_API_KEY and "
"PINECONE_ENVIRONMENT environment variables. Please visit "
"https://www.pinecone.io/docs/quick-start/ for more details.")
"https://www.pinecone.io/docs/quickstart/ for more details.")
raise CLIError(msg)

click.echo("Canopy is going to upsert data from ", nl=False)
Expand Down