-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (33 loc) · 1.04 KB
/
update-index.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 }}