Skip to content

Commit 7e1d993

Browse files
committed
updated workflows with correct pinecone api keys and index names
1 parent c7b9067 commit 7e1d993

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy_chatbot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
4040
# Create/update .env file with secrets
4141
cat > .env <<EOF
42-
PINECONE_API_KEY=${{ secrets.PINECONE_API_KEY }}
42+
PINECONE_API_KEY=${{ secrets.CHATBOT_PINECONE_API_KEY }}
4343
PINECONE_CLOUD=${{ secrets.PINECONE_CLOUD }}
4444
PINECONE_REGION=${{ secrets.PINECONE_REGION }}
45-
PINECONE_INDEX=${{ secrets.PINECONE_INDEX }}
45+
PINECONE_INDEX=${{ secrets.CHATBOT_PINECONE_INDEX }}
4646
PINECONE_NAMESPACE=${{ secrets.PINECONE_NAMESPACE }}
4747
EMBED_MODEL=${{ secrets.EMBED_MODEL }}
4848
CHAT_MODEL=${{ secrets.CHAT_MODEL }}

.github/workflows/deploy_compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
# Create/update .env file with secrets (if needed)
4141
cat > .env <<EOF
42-
PINECONE_API_KEY=${{ secrets.PINECONE_API_KEY }}
42+
PINECONE_API_KEY=${{ secrets.COMPLIANCE_PINECONE_API_KEY }}
4343
PINECONE_CLOUD=${{ secrets.PINECONE_CLOUD }}
4444
PINECONE_REGION=${{ secrets.PINECONE_REGION }}
4545
PINECONE_INDEX=${{ secrets.COMPLIANCE_PINECONE_INDEX }}

0 commit comments

Comments
 (0)