Add debug script to check inference snippets + update Python text-to-image snippets #8
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: Inference check snippets | |
on: | |
pull_request: | |
paths: | |
- "packages/tasks/src/snippets/**" | |
- ".github/workflows/inference-check-snippets.yml" | |
jobs: | |
check-snippets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: corepack enable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
cache: "pnpm" | |
cache-dependency-path: "**/pnpm-lock.yaml" | |
- run: | | |
cd packages/tasks | |
pnpm install | |
# TODO: Find a way to run on all pipeline tags | |
# TODO: print snippet only if it has changed since the last commit on main (?) | |
# TODO: (even better: automated message on the PR with diff) | |
- name: Print text-to-image snippets | |
run: | | |
cd packages/tasks | |
pnpm run check-snippets --pipeline-tag="text-to-image" | |
- name: Print simple text-generation snippets | |
run: | | |
cd packages/tasks | |
pnpm run check-snippets --pipeline-tag="text-generation" | |
- name: Print conversational text-generation snippets | |
run: | | |
cd packages/tasks | |
pnpm run check-snippets --pipeline-tag="text-generation" --tags="conversational" |