Skip to content

Commit c9eba61

Browse files
lesebcdoern
authored andcommitted
chore: add batches to openapi schema (llamastack#3980)
While working on llamastack#3944 I realized that the batches API wasn't generated. Signed-off-by: Sébastien Han <[email protected]> Signed-off-by: Charlie Doern <[email protected]>
1 parent 19d8500 commit c9eba61

File tree

463 files changed

+5408
-1202
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

463 files changed

+5408
-1202
lines changed

.github/workflows/python-build-test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,16 @@ jobs:
3030
activate-environment: true
3131
version: 0.7.6
3232

33+
- name: Build Llama Stack Spec package
34+
working-directory: src/llama-stack-api
35+
run: uv build
36+
3337
- name: Build Llama Stack package
34-
run: |
35-
uv build
38+
run: uv build
3639

37-
- name: Install Llama Stack package
40+
- name: Install Llama Stack package (with spec from local build)
3841
run: |
39-
uv pip install dist/*.whl
42+
uv pip install --find-links src/llama-stack-api/dist dist/*.whl
4043
4144
- name: Verify Llama Stack package
4245
run: |

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
hooks:
4343
- id: ruff
4444
args: [ --fix ]
45-
exclude: ^src/llama_stack/strong_typing/.*$
45+
exclude: ^(src/llama_stack/strong_typing/.*|src/llama-stack-api/llama_stack_api/strong_typing/.*)$
4646
- id: ruff-format
4747

4848
- repo: https://github.com/adamchainz/blacken-docs

0 commit comments

Comments
 (0)