Skip to content

Commit

Permalink
Add CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyashankar committed Aug 20, 2024
1 parent 06ee4f0 commit c4c91e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

steps:
- name: Checkout code
Expand Down
5 changes: 3 additions & 2 deletions todos.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ TODO:
- [x] In resolve optimizer, support list-type reduce keys
- [ ] Operator reordering (Aug 21 & 22)
- [ ] support equivalence: map -> unnest -> reduce might be same as split -> gather -> map -> unnest -> reduce (no need to have a reduce right after map)
- [ ] Run tests in CI
- [ ] Support retry on validation failure
- [x] Run tests in CI
- [x] Support retry on validation failure
- [ ] Support retries in the optimizers
- [ ] Write tests for optimizers
- [ ] Filter optimizer
Expand All @@ -83,3 +83,4 @@ Things to think about
- In reduce optimizer: if agent suggests drill-down, see if we need to add a map to create the subreduce keys, or the subreduce key already exists
- Try various combine prompts in the reduce optimizer
- Filter optimizer: we should recursively optimize reduces if the reduce isn't good on its own
- Support retry on val failure for operations beyond map/filter

0 comments on commit c4c91e7

Please sign in to comment.