Skip to content

Commit d52858f

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.525.1
1 parent 670bfe8 commit d52858f

33 files changed

+209
-58
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.525.0
1+
speakeasyVersion: 1.525.1
22
sources:
33
orq-ai-sdk-prerelease-python:
44
sourceNamespace: orq-ai-sdk-prerelease-python
5-
sourceRevisionDigest: sha256:7f5cea3f2e93d882172cc707968114c2679a7fab7f6310c86edfe90f0d90dca9
6-
sourceBlobDigest: sha256:af983835d3225eaf5928c5d09ad362ed52f257c02ad8f1b2e71628d7c69f23cf
5+
sourceRevisionDigest: sha256:bc5b06e839bf075eefd0300516bb983ea3175bd7fec9664d2ab403da170b66ea
6+
sourceBlobDigest: sha256:ad6f012a73d79a2af84d8f8f373ce0854b366fa4b224f0c194c742566ab1f793
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1743085273
9+
- speakeasy-sdk-regen-1743113801
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:7f5cea3f2e93d882172cc707968114c2679a7fab7f6310c86edfe90f0d90dca9
24-
sourceBlobDigest: sha256:af983835d3225eaf5928c5d09ad362ed52f257c02ad8f1b2e71628d7c69f23cf
23+
sourceRevisionDigest: sha256:bc5b06e839bf075eefd0300516bb983ea3175bd7fec9664d2ab403da170b66ea
24+
sourceBlobDigest: sha256:ad6f012a73d79a2af84d8f8f373ce0854b366fa4b224f0c194c742566ab1f793
2525
codeSamplesNamespace: orq-ai-sdk-prerelease-python-code-samples
26-
codeSamplesRevisionDigest: sha256:fc274afabcfc3b3e87e448431b32a4d53b7bbbdd4743479292eb2a1861bcce4d
26+
codeSamplesRevisionDigest: sha256:65cb53513a224c998131e81d12b8b1404c46e6f22c3286b18a16f59f97724d76
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: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 85e129dc-bc42-49d7-a540-14c82344db7c
33
management:
4-
docChecksum: 3f2a965188ca58ad9002265d43d3848a
4+
docChecksum: a0310192dd786f8a23469a5c48817a99
55
docVersion: "2.0"
6-
speakeasyVersion: 1.525.0
6+
speakeasyVersion: 1.525.1
77
generationVersion: 2.562.2
8-
releaseVersion: 3.3.0-rc.12
9-
configChecksum: 87c31221d77d0aebb2a815cc44219880
8+
releaseVersion: 3.3.0-rc.13
9+
configChecksum: 388eb4439d87e3362d089d684db891fe
1010
repoURL: https://github.com/orq-ai/orq-python.git
1111
repoSubDirectory: packages/orq-rc
1212
installationURL: https://github.com/orq-ai/orq-python.git#subdirectory=packages/orq-rc
@@ -136,6 +136,7 @@ generatedFiles:
136136
- docs/models/createdatasourcerequest.md
137137
- docs/models/createdatasourcerequestbody.md
138138
- docs/models/createdatasourceresponsebody.md
139+
- docs/models/createdatasourcestatus.md
139140
- docs/models/createfeedbackrequestbody.md
140141
- docs/models/createfeedbackresponsebody.md
141142
- docs/models/createfeedbackvalue.md
@@ -823,6 +824,7 @@ generatedFiles:
823824
- docs/models/provider.md
824825
- docs/models/purpose.md
825826
- docs/models/quality.md
827+
- docs/models/queryparamstatus.md
826828
- docs/models/reasoningeffort.md
827829
- docs/models/refusalcontentpart.md
828830
- docs/models/remoteconfigsgetconfigrequestbody.md
@@ -1586,6 +1588,7 @@ examples:
15861588
knowledge_id: "<id>"
15871589
query:
15881590
limit: 10
1591+
status: "completed"
15891592
responses:
15901593
"200":
15911594
application/json: {"object": "list", "data": [{"_id": "01JQBZHPBE7D8M0PHNY5C8ABD0", "display_name": "Mohammad_Brakus85", "status": "completed", "created": "<value>", "updated": "<value>", "knowledge_id": "<id>", "chunks_count": 792.15}, {"_id": "01JQBZHPBE7D8M0PHNY5C8ABD0", "display_name": "Ricky53", "status": "queued", "created": "<value>", "updated": "<value>", "knowledge_id": "<id>", "chunks_count": 8596.21}], "has_more": false}
@@ -1631,6 +1634,7 @@ examples:
16311634
datasource_id: "<id>"
16321635
query:
16331636
limit: 10
1637+
status: "completed"
16341638
responses:
16351639
"200":
16361640
application/json: {"object": "list", "data": [{"_id": "<id>", "text": "<value>", "enabled": true, "status": "processing", "created": "<value>", "updated": "<value>"}, {"_id": "<id>", "text": "<value>", "enabled": false, "status": "failed", "created": "<value>", "updated": "<value>"}], "has_more": false}

packages/orq-rc/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,4 +938,14 @@ Based on:
938938
### Generated
939939
- [python v3.3.0-rc.12] packages/orq-rc
940940
### Releases
941-
- [PyPI v3.3.0-rc.12] https://pypi.org/project/orq-ai-sdk/3.3.0-rc.12 - packages/orq-rc
941+
- [PyPI v3.3.0-rc.12] https://pypi.org/project/orq-ai-sdk/3.3.0-rc.12 - packages/orq-rc
942+
943+
## 2025-03-27 22:16:22
944+
### Changes
945+
Based on:
946+
- OpenAPI Doc
947+
- Speakeasy CLI 1.525.1 (2.562.2) https://github.com/speakeasy-api/speakeasy
948+
### Generated
949+
- [python v3.3.0-rc.13] packages/orq-rc
950+
### Releases
951+
- [PyPI v3.3.0-rc.13] https://pypi.org/project/orq-ai-sdk/3.3.0-rc.13 - packages/orq-rc

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Datasource successfully created
88
| Field | Type | Required | Description |
99
| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
1010
| `display_name` | *str* | :heavy_check_mark: | The display name of the datasource. Normally the name of the uploaded file |
11-
| `status` | [models.Status](../models/status.md) | :heavy_check_mark: | N/A |
11+
| `status` | [models.CreateDatasourceStatus](../models/createdatasourcestatus.md) | :heavy_check_mark: | N/A |
1212
| `created` | *str* | :heavy_check_mark: | The date and time the datasource was created |
1313
| `updated` | *str* | :heavy_check_mark: | The date and time the datasource was updated |
1414
| `knowledge_id` | *str* | :heavy_check_mark: | The unique identifier of the knowledge base |
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CreateDatasourceStatus
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------------ | ------------ |
8+
| `PENDING` | pending |
9+
| `PROCESSING` | processing |
10+
| `COMPLETED` | completed |
11+
| `FAILED` | failed |
12+
| `QUEUED` | queued |

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@
99
| `datasource_id` | *str* | :heavy_check_mark: | The unique identifier of the datasource. |
1010
| `limit` | *Optional[float]* | :heavy_minus_sign: | A limit on the number of objects to be returned. Limit can range between 1 and 50, and the default is 10 |
1111
| `starting_after` | *Optional[str]* | :heavy_minus_sign: | A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, ending with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `after=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the next page of the list. |
12-
| `ending_before` | *Optional[str]* | :heavy_minus_sign: | A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, starting with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `before=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the previous page of the list. |
12+
| `ending_before` | *Optional[str]* | :heavy_minus_sign: | A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, starting with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `before=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the previous page of the list. |
13+
| `q` | *Optional[str]* | :heavy_minus_sign: | Search query to find datasources by name. |
14+
| `status` | [Optional[models.QueryParamStatus]](../models/queryparamstatus.md) | :heavy_minus_sign: | Filter datasources by status. |

0 commit comments

Comments
 (0)