Merge pull request #33 from morpho-labs/feat/docs-adding-latest-artic… #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Index | |
on: | |
push: | |
paths: | |
- "documents/**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Create index | |
run: npx morpho-gpt-cli create-index --dimension 1536 --timeout 200000 | |
env: | |
PINECONE_INDEX: ${{ secrets.PINECONE_INDEX }} | |
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} | |
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} | |
- name: Update index | |
run: npx morpho-gpt-cli update-index --pathDocs "./documents" | |
env: | |
PINECONE_INDEX: ${{ secrets.PINECONE_INDEX }} | |
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }} | |
PINECONE_ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |