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 #98
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: Publish Documentation | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
jobs: | |
publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Set Up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Poetry | |
run: make get-poetry | |
- name: Install Package & Dependencies | |
run: make install | |
- name: Publish Documentation | |
if: github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'docs' | |
run: make docs-deploy | |
env: | |
LEPTON_API_KEY: ${{ secrets.LEPTON_API_KEY }} |