Skip to content

Merge pull request #33 from morpho-labs/feat/docs-adding-latest-artic… #45

Merge pull request #33 from morpho-labs/feat/docs-adding-latest-artic…

Merge pull request #33 from morpho-labs/feat/docs-adding-latest-artic… #45

Workflow file for this run

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 }}