Move prompts into LLMs module (#70)
Since the only usage of prompt is within LLMs, it is reasonable to keep it within the LLM module. This way, it would be easier to discover module, and make the code base less complicated. Changes: * Move prompt components into llms * Bump version 0.3.1 * Make pip install dependencies in eager mode --------- Co-authored-by: ian <ian@cinnamon.is>
This commit is contained in:
committed by
GitHub
parent
8532138842
commit
693ed39de4
3
.github/workflows/unit-test.yaml
vendored
3
.github/workflows/unit-test.yaml
vendored
@@ -65,6 +65,7 @@ jobs:
|
||||
with:
|
||||
path: ${{ env.pythonLocation }}
|
||||
key: ${{ steps.get-cache-key.outputs.key }}
|
||||
# could using cache of previous ver to reuse unchanged packages
|
||||
restore-keys: ${{ runner.os }}-py${{ matrix.python-version }}
|
||||
|
||||
- name: Check cache hit
|
||||
@@ -81,7 +82,7 @@ jobs:
|
||||
steps.check-cache-hit.outputs.check != 'true'
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install --ignore-installed -e .[dev]
|
||||
pip install -U --upgrade-strategy eager -e .[dev]
|
||||
|
||||
- name: New dependencies cache for key ${{ steps.restore-dependencies.outputs.cache-primary-key }}
|
||||
if: |
|
||||
|
Reference in New Issue
Block a user