Skip to content

Commit eabbe6e

Browse files
committed
precommit
1 parent dff7d07 commit eabbe6e

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"extensions": [
1515
"ms-python.python"
1616
],
17-
"settings": {
17+
"settings": {
1818
"terminal.integrated.shell.linux": "/bin/bash",
1919
"python.pythonPath": ".venv/bin/python",
2020
"python.defaultInterpreterPath": ".venv/bin/python",

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint:
1313
name: lint
1414
runs-on: ubuntu-latest
15-
15+
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -50,4 +50,3 @@ jobs:
5050

5151
- name: Run tests
5252
run: ./scripts/test
53-

Brewfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
brew "rye"
2-

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is generated with [Stainless](https://www.stainlessapi.com/).
1111

1212
## Documentation
1313

14-
For starting up a Llama Stack server, please checkout our guides in our [llama-stack](https://github.com/meta-llama/llama-stack/blob/main/docs/resources/llama-stack-spec.html) repo.
14+
For starting up a Llama Stack server, please checkout our guides in our [llama-stack](https://github.com/meta-llama/llama-stack/blob/main/docs/resources/llama-stack-spec.html) repo.
1515

1616
The REST API documentation can be found on our [llama-stack OpenAPI spec](https://github.com/meta-llama/llama-stack/blob/main/docs/resources/llama-stack-spec.html). The full API of this library can be found in [api.md](api.md).
1717

@@ -25,7 +25,7 @@ pip install llama-stack-client
2525

2626
## Usage
2727

28-
The full API of this library can be found in [api.md](api.md). You may find basic client examples in the [/examples](./examples/) folder.
28+
The full API of this library can be found in [api.md](api.md). You may find basic client examples in the [/examples](./examples/) folder.
2929

3030
```python
3131
from llama_stack_client import LlamaStackClient

docs/cli_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CLI Reference
22

3-
You may use the `llama-stack-client` to query information about the distribution.
3+
You may use the `llama-stack-client` to query information about the distribution.
44

55
#### `llama-stack-client`
66
```bash

examples/.keep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
File generated from our OpenAPI spec by Stainless.
22

33
This directory can be used to store example files demonstrating usage of this SDK.
4-
It is ignored by Stainless code generation and its content (other than this keep file) won't be touched.
4+
It is ignored by Stainless code generation and its content (other than this keep file) won't be touched.

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SDK Examples
22

3-
Basic demo client scripts to help you get started with using SDK. For more complex app examples, please checkout our [llama-stack-apps](https://github.com/meta-llama/llama-stack-apps/tree/main) repo.
3+
Basic demo client scripts to help you get started with using SDK. For more complex app examples, please checkout our [llama-stack-apps](https://github.com/meta-llama/llama-stack-apps/tree/main) repo.
44

55
## Setup
66
```

src/llama_stack_client/lib/cli/models/list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# the root directory of this source tree.
66

77
import argparse
8+
89
from llama_stack_client import LlamaStackClient
910
from llama_stack_client.lib.cli.common.utils import print_table_from_response
1011
from llama_stack_client.lib.cli.configure import get_config

0 commit comments

Comments
 (0)