Update index #423
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: | |
workflow_dispatch: | |
inputs: | |
force_update: | |
description: 'Whether to overwrite documents found in the record manager' | |
required: false | |
default: false | |
type: boolean | |
schedule: | |
- cron: '0 13 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: Indexing | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install | |
- name: Ingest docs | |
run: poetry run python backend/ingest.py | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
WEAVIATE_URL: ${{ secrets.WEAVIATE_URL }} | |
WEAVIATE_API_KEY: ${{ secrets.WEAVIATE_API_KEY }} | |
RECORD_MANAGER_DB_URL: ${{ secrets.RECORD_MANAGER_DB_URL }} | |
VOYAGE_AI_MODEL: ${{ secrets.VOYAGE_AI_MODEL }} | |
VOYAGE_AI_URL: ${{ secrets.VOYAGE_AI_URL }} | |
VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }} | |
FORCE_UPDATE: ${{ github.event.inputs.force_update }} |