Skip to content

Commit 5d44fb4

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.472.0
1 parent dd97b51 commit 5d44fb4

File tree

76 files changed

+903
-338
lines changed

Some content is hidden

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

76 files changed

+903
-338
lines changed

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
speakeasyVersion: 1.468.7
1+
speakeasyVersion: 1.472.0
22
sources:
33
orq-ai-sdk-prerelease-python:
44
sourceNamespace: orq-ai-sdk-prerelease-python
5-
sourceRevisionDigest: sha256:4b285b18858150c8179c0a69be961ba9debd5ee238283f45e8ac22035874b812
6-
sourceBlobDigest: sha256:acf698591bd1f4e6742a98c8a1a13c14947cf53c8c563e10aa504dac51b147bb
5+
sourceRevisionDigest: sha256:c49ede82ce334188feb755866a81148a91f3b33a22270d8646f23cebe1de9e82
6+
sourceBlobDigest: sha256:970b5e36fee28e35b88e1600affd5d2edfca78169831afc2473b00f34ae589a6
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1736370532
9+
- speakeasy-sdk-regen-1737615597
1010
- "2.0"
1111
orq-ai-sdk-python:
1212
sourceNamespace: orq-ai-sdk-python
@@ -20,10 +20,10 @@ targets:
2020
orq-ai-sdk-prerelease-python:
2121
source: orq-ai-sdk-prerelease-python
2222
sourceNamespace: orq-ai-sdk-prerelease-python
23-
sourceRevisionDigest: sha256:4b285b18858150c8179c0a69be961ba9debd5ee238283f45e8ac22035874b812
24-
sourceBlobDigest: sha256:acf698591bd1f4e6742a98c8a1a13c14947cf53c8c563e10aa504dac51b147bb
23+
sourceRevisionDigest: sha256:c49ede82ce334188feb755866a81148a91f3b33a22270d8646f23cebe1de9e82
24+
sourceBlobDigest: sha256:970b5e36fee28e35b88e1600affd5d2edfca78169831afc2473b00f34ae589a6
2525
codeSamplesNamespace: orq-ai-sdk-prerelease-python-code-samples
26-
codeSamplesRevisionDigest: sha256:a641fdc75abcc258c10b791c45ff1d69a4e8abc33702bb0e860289eaf0536c94
26+
codeSamplesRevisionDigest: sha256:4afbce4a8c4f8c1e94f0bcd10e1166f59d43ce39515bf40f7a86df6b2ab0c3ec
2727
orq-ai-sdk-python:
2828
source: orq-ai-sdk-python
2929
sourceNamespace: orq-ai-sdk-python

packages/orq-rc/.speakeasy/gen.lock

Lines changed: 58 additions & 48 deletions
Large diffs are not rendered by default.

packages/orq-rc/.speakeasy/gen.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ python:
2222
clientServerStatusCodesAsErrors: true
2323
defaultErrorName: APIError
2424
description: Python Client SDK for the Orq API.
25+
enableCustomCodeRegions: false
2526
enumFormat: union
2627
envVarPrefix: ORQ
2728
fixFlags:

packages/orq-rc/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ with Orq(
160160

161161
### [deployments](docs/sdks/deploymentssdk/README.md)
162162

163-
* [all](docs/sdks/deploymentssdk/README.md#all) - List all deployments
163+
* [list](docs/sdks/deploymentssdk/README.md#list) - List all deployments
164+
* [invalidate](docs/sdks/deploymentssdk/README.md#invalidate) - Invalidates cache
164165
* [get_config](docs/sdks/deploymentssdk/README.md#get_config) - Get config
165166
* [invoke](docs/sdks/deploymentssdk/README.md#invoke) - Invoke
166167

@@ -230,7 +231,7 @@ with Orq(
230231
api_key=os.getenv("ORQ_API_KEY", ""),
231232
) as orq:
232233

233-
res = orq.deployments.invoke(key="<key>")
234+
res = orq.deployments.invoke(key="<key>", stream=False)
234235

235236
assert res is not None
236237

@@ -334,7 +335,7 @@ By default, an API error will raise a models.APIError exception, which has the f
334335
| `.raw_response` | *httpx.Response* | The raw HTTP response |
335336
| `.body` | *str* | The response content |
336337

337-
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `all_async` method may raise the following exceptions:
338+
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `list_async` method may raise the following exceptions:
338339

339340
| Error Type | Status Code | Content Type |
340341
| ------------------- | ----------- | ---------------- |
@@ -353,7 +354,7 @@ with Orq(
353354
res = None
354355
try:
355356

356-
res = orq.deployments.all()
357+
res = orq.deployments.list(limit=10)
357358

358359
assert res is not None
359360

@@ -380,7 +381,7 @@ from orq_ai_sdk import Orq
380381
import os
381382

382383
with Orq(
383-
server_url="https://my.staging.orq.ai",
384+
server_url="https://my.orq.ai",
384385
api_key=os.getenv("ORQ_API_KEY", ""),
385386
) as orq:
386387

packages/orq-rc/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,14 @@ Based on:
4848
### Generated
4949
- [python v3.0.0-rc.18] packages/orq-rc
5050
### Releases
51-
- [PyPI v3.0.0-rc.18] https://pypi.org/project/orq-ai-sdk/3.0.0-rc.18 - packages/orq-rc
51+
- [PyPI v3.0.0-rc.18] https://pypi.org/project/orq-ai-sdk/3.0.0-rc.18 - packages/orq-rc
52+
53+
## 2025-01-23 06:59:41
54+
### Changes
55+
Based on:
56+
- OpenAPI Doc
57+
- Speakeasy CLI 1.472.0 (2.493.34) https://github.com/speakeasy-api/speakeasy
58+
### Generated
59+
- [python v3.1.0-rc.9] packages/orq-rc
60+
### Releases
61+
- [PyPI v3.1.0-rc.9] https://pypi.org/project/orq-ai-sdk/3.1.0-rc.9 - packages/orq-rc

packages/orq-rc/docs/models/createpromptprovider.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@
2020
| `FAL` | fal |
2121
| `LEONARDOAI` | leonardoai |
2222
| `NVIDIA` | nvidia |
23-
| `JINA` | jina |
23+
| `JINA` | jina |
24+
| `TOGETHERAI` | togetherai |
25+
| `ELEVENLABS` | elevenlabs |

packages/orq-rc/docs/models/createpromptversionpromptsprovider.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@
2020
| `FAL` | fal |
2121
| `LEONARDOAI` | leonardoai |
2222
| `NVIDIA` | nvidia |
23-
| `JINA` | jina |
23+
| `JINA` | jina |
24+
| `TOGETHERAI` | togetherai |
25+
| `ELEVENLABS` | elevenlabs |

packages/orq-rc/docs/models/createpromptversionprovider.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@
2020
| `FAL` | fal |
2121
| `LEONARDOAI` | leonardoai |
2222
| `NVIDIA` | nvidia |
23-
| `JINA` | jina |
23+
| `JINA` | jina |
24+
| `TOGETHERAI` | togetherai |
25+
| `ELEVENLABS` | elevenlabs |

packages/orq-rc/docs/models/dataprovider.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@
2020
| `FAL` | fal |
2121
| `LEONARDOAI` | leonardoai |
2222
| `NVIDIA` | nvidia |
23-
| `JINA` | jina |
23+
| `JINA` | jina |
24+
| `TOGETHERAI` | togetherai |
25+
| `ELEVENLABS` | elevenlabs |

packages/orq-rc/docs/models/deploymentinvokeprovider.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ The provider used to generate the response
2222
| `FAL` | fal |
2323
| `LEONARDOAI` | leonardoai |
2424
| `NVIDIA` | nvidia |
25-
| `JINA` | jina |
25+
| `JINA` | jina |
26+
| `TOGETHERAI` | togetherai |
27+
| `ELEVENLABS` | elevenlabs |

0 commit comments

Comments
 (0)