Skip to content

enhance openssa.l2.planning.hierarchical._prompts.HTP_RESULTS_SYNTH_PROMPT_TEMPLATE to eliminate the return of generic (and potentially confusing) supporting-details reference names/numbers #655

enhance openssa.l2.planning.hierarchical._prompts.HTP_RESULTS_SYNTH_PROMPT_TEMPLATE to eliminate the return of generic (and potentially confusing) supporting-details reference names/numbers

enhance openssa.l2.planning.hierarchical._prompts.HTP_RESULTS_SYNTH_PROMPT_TEMPLATE to eliminate the return of generic (and potentially confusing) supporting-details reference names/numbers #655

name: Install Package, Lint Code & Run Tests on Ubuntu
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
install-lint-test-on-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.12
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: make get-poetry
- name: Install Package & Dependencies
run: make install
- name: Lint Code
run: make lint
- name: Run Tests
run: make test
env:
LEPTON_API_KEY: ${{ secrets.LEPTON_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}