Skip to content

Commit 05f867b

Browse files
feat(api): add readonly connectors API
1 parent c784ae1 commit 05f867b

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 103
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-04657ade6bdb9c2a493a086f2607e98c97da7d04c0b0e7d5a53fd60eff062bd2.yml
3-
openapi_spec_hash: 56d411cdfeec6daae5ac7ea0e74c6217
4-
config_hash: 96aa17ff0395152d8d548b1d1e58b613
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-798a94e418defb2b9c8e7432a9f8a76635439b07e8fd3cc4a158a2b26dd60b90.yml
3+
openapi_spec_hash: 93b1520629590a9ecaa74d726c006a49
4+
config_hash: 39578cfdeb4a10121f2cb3fa3e4d5e20

api.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,11 @@ Methods:
459459
Types:
460460

461461
```python
462-
from llama_stack_client.types.alpha import AlgorithmConfig, PostTrainingJob
462+
from llama_stack_client.types.alpha import (
463+
AlgorithmConfig,
464+
ListPostTrainingJobsResponse,
465+
PostTrainingJob,
466+
)
463467
```
464468

465469
Methods:
@@ -473,7 +477,6 @@ Types:
473477

474478
```python
475479
from llama_stack_client.types.alpha.post_training import (
476-
ListPostTrainingJobsResponse,
477480
JobListResponse,
478481
JobArtifactsResponse,
479482
JobStatusResponse,

src/llama_stack_client/types/alpha/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
from .inference_rerank_response import InferenceRerankResponse as InferenceRerankResponse
2323
from .eval_run_eval_alpha_params import EvalRunEvalAlphaParams as EvalRunEvalAlphaParams
2424
from .eval_evaluate_rows_alpha_params import EvalEvaluateRowsAlphaParams as EvalEvaluateRowsAlphaParams
25+
from .list_post_training_jobs_response import ListPostTrainingJobsResponse as ListPostTrainingJobsResponse
2526
from .post_training_preference_optimize_params import (
2627
PostTrainingPreferenceOptimizeParams as PostTrainingPreferenceOptimizeParams,
2728
)

src/llama_stack_client/types/alpha/post_training/list_post_training_jobs_response.py renamed to src/llama_stack_client/types/alpha/list_post_training_jobs_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
88

9-
from ...._models import BaseModel
10-
from .job_list_response import JobListResponse
9+
from ..._models import BaseModel
10+
from .post_training.job_list_response import JobListResponse
1111

1212
__all__ = ["ListPostTrainingJobsResponse"]
1313

src/llama_stack_client/types/alpha/post_training/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@
1414
from .job_status_response import JobStatusResponse as JobStatusResponse
1515
from .job_artifacts_params import JobArtifactsParams as JobArtifactsParams
1616
from .job_artifacts_response import JobArtifactsResponse as JobArtifactsResponse
17-
from .list_post_training_jobs_response import ListPostTrainingJobsResponse as ListPostTrainingJobsResponse

0 commit comments

Comments
 (0)