Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Commit 7fb44fa

Browse files
feat(api): update via SDK Studio
1 parent af009b6 commit 7fb44fa

File tree

227 files changed

+16724
-10284
lines changed

Some content is hidden

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

227 files changed

+16724
-10284
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
"postCreateCommand": "yarn install",
1010
"customizations": {
1111
"vscode": {
12-
"extensions": ["esbenp.prettier-vscode"]
12+
"extensions": [
13+
"esbenp.prettier-vscode"
14+
]
1315
}
1416
}
1517
}

.eslintrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
plugins: ['@typescript-eslint', 'unused-imports', 'prettier'],
4+
rules: {
5+
'no-unused-vars': 'off',
6+
'prettier/prettier': 'error',
7+
'unused-imports/no-unused-imports': 'error',
8+
},
9+
root: true,
10+
};

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
lint:
1717
timeout-minutes: 10
1818
name: lint
19-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
19+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
2020
steps:
2121
- uses: actions/checkout@v4
2222

2323
- name: Set up Node
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: '20'
26+
node-version: '18'
2727

2828
- name: Bootstrap
2929
run: ./scripts/bootstrap
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
timeout-minutes: 5
3636
name: build
37-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
37+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
3838
permissions:
3939
contents: read
4040
id-token: write
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Node
4545
uses: actions/setup-node@v4
4646
with:
47-
node-version: '20'
47+
node-version: '18'
4848

4949
- name: Bootstrap
5050
run: ./scripts/bootstrap
@@ -53,14 +53,14 @@ jobs:
5353
run: ./scripts/build
5454

5555
- name: Get GitHub OIDC Token
56-
if: github.repository == 'stainless-sdks/llama-stack-client-typescript'
56+
if: github.repository == 'stainless-sdks/llama-stack-client-node'
5757
id: github-oidc
5858
uses: actions/github-script@v6
5959
with:
6060
script: core.setOutput('github_token', await core.getIDToken());
6161

6262
- name: Upload tarball
63-
if: github.repository == 'stainless-sdks/llama-stack-client-typescript'
63+
if: github.repository == 'stainless-sdks/llama-stack-client-node'
6464
env:
6565
URL: https://pkg.stainless.com/s
6666
AUTH: ${{ steps.github-oidc.outputs.github_token }}
@@ -69,7 +69,7 @@ jobs:
6969
test:
7070
timeout-minutes: 10
7171
name: test
72-
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
72+
runs-on: ${{ github.repository == 'stainless-sdks/llama-stack-client-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
7373
steps:
7474
- uses: actions/checkout@v4
7575

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ jobs:
1818
run: |
1919
bash ./bin/check-release-environment
2020
env:
21+

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 91
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-0e756984d87c3fd1eb96d486947b3bc2086d5afcf299e8119b6b89bbd86dbe75.yml
3-
openapi_spec_hash: 7c519a25bb9a094d4b4bda17bb20dd88
4-
config_hash: d1f21dfdbf5d9925eecf56b6c1fab755
1+
configured_endpoints: 96
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-df7a19394e9124c18ec4e888e2856d22b5ebfd6fe6fe6e929ff6cfadb2ae7e2a.yml
3+
openapi_spec_hash: 9428682672fdd7e2afee7af9ef849dc9
4+
config_hash: c2377844063fe8b7c43d8b79522fa6fc

0 commit comments

Comments
 (0)