Skip to content

Instantly share code, notes, and snippets.

@elijahbenizzy
Created June 11, 2024 17:14
Show Gist options
  • Save elijahbenizzy/5a79e1dc4186436b9156daa1cf7f6020 to your computer and use it in GitHub Desktop.
Save elijahbenizzy/5a79e1dc4186436b9156daa1cf7f6020 to your computer and use it in GitHub Desktop.
name: Embed URLs
on:
schedule:
- cron: '0 0 * * *'
jobs:
build_emebeddings:
runs-on: ubuntu-latest
- name: Check out repository code
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Runhouse with AWS dependencies
run: |
python -m pip install --upgrade pip
pip install runhouse[aws] hamilton
- name: Run the embedding script and save the embedding revision
run: python batch_process.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment