Skip to content

Commit 841482b

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.575.1
1 parent 384e816 commit 841482b

File tree

155 files changed

+5462
-4926
lines changed

Some content is hidden

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

155 files changed

+5462
-4926
lines changed

.speakeasy/gen.lock

Lines changed: 100 additions & 30 deletions
Large diffs are not rendered by default.

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
speakeasyVersion: 1.575.0
1+
speakeasyVersion: 1.575.1
22
sources:
33
orq-ai-sdk-prerelease-python:
44
sourceNamespace: orq-ai-sdk-prerelease-python
@@ -10,11 +10,11 @@ sources:
1010
- "2.0"
1111
orq-ai-sdk-python:
1212
sourceNamespace: orq-ai-sdk-python
13-
sourceRevisionDigest: sha256:554b29d0430080305b02ba602ebdadf6961792e5bfa8c1e4f172ce0ff52dd4b4
14-
sourceBlobDigest: sha256:801b3a34fbc0289f1c1aba5097c1fd4a1d5301acc0020a3176f4caa46ef85e57
13+
sourceRevisionDigest: sha256:54b092a7d6da91e08b34571944214c0529c3d265e30078bcfc6706f5a1bcffb3
14+
sourceBlobDigest: sha256:1eb8e1df4319a9b147bce0dd0ba1737656e5aacba7df3d365e5260e6d025d800
1515
tags:
1616
- latest
17-
- speakeasy-sdk-regen-1751100180
17+
- speakeasy-sdk-regen-1751485738
1818
- "2.0"
1919
targets:
2020
orq-ai-sdk-prerelease-python:
@@ -27,10 +27,10 @@ targets:
2727
orq-ai-sdk-python:
2828
source: orq-ai-sdk-python
2929
sourceNamespace: orq-ai-sdk-python
30-
sourceRevisionDigest: sha256:554b29d0430080305b02ba602ebdadf6961792e5bfa8c1e4f172ce0ff52dd4b4
31-
sourceBlobDigest: sha256:801b3a34fbc0289f1c1aba5097c1fd4a1d5301acc0020a3176f4caa46ef85e57
30+
sourceRevisionDigest: sha256:54b092a7d6da91e08b34571944214c0529c3d265e30078bcfc6706f5a1bcffb3
31+
sourceBlobDigest: sha256:1eb8e1df4319a9b147bce0dd0ba1737656e5aacba7df3d365e5260e6d025d800
3232
codeSamplesNamespace: orq-ai-sdk-python-code-samples
33-
codeSamplesRevisionDigest: sha256:fb0233c88679a46fab775bfdeaae9bb7450115f12b3da66343005e5d7833ff53
33+
codeSamplesRevisionDigest: sha256:eebf9d9980e827c9c8c6c602cbfab5134b37e9c1190759ea4b77c66ea6b08f61
3434
workflow:
3535
workflowVersion: 1.0.0
3636
speakeasyVersion: latest

README.md

Lines changed: 132 additions & 24 deletions
Large diffs are not rendered by default.

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,4 +818,14 @@ Based on:
818818
### Generated
819819
- [python v3.8.9] .
820820
### Releases
821-
- [PyPI v3.8.9] https://pypi.org/project/orq-ai-sdk/3.8.9 - .
821+
- [PyPI v3.8.9] https://pypi.org/project/orq-ai-sdk/3.8.9 - .
822+
823+
## 2025-07-02 19:48:35
824+
### Changes
825+
Based on:
826+
- OpenAPI Doc
827+
- Speakeasy CLI 1.575.1 (2.648.1) https://github.com/speakeasy-api/speakeasy
828+
### Generated
829+
- [python v3.9.0] .
830+
### Releases
831+
- [PyPI v3.9.0] https://pypi.org/project/orq-ai-sdk/3.9.0 - .

docs/models/agenticchunker.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# AgenticChunker
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| --------- | --------- |
8+
| `AGENTIC` | agentic |

docs/models/agenticchunkerstrategy.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AgenticChunkerStrategy
2+
3+
Agentic LLM-powered chunker that uses AI to determine optimal split points. Best for complex documents requiring intelligent segmentation.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
10+
| `text` | *str* | :heavy_check_mark: | The text content to be chunked | |
11+
| `metadata` | *Optional[bool]* | :heavy_minus_sign: | Whether to include metadata for each chunk | |
12+
| `return_type` | [Optional[models.ChunkTextChunkingRequestKnowledgeRequestRequestBodyReturnType]](../models/chunktextchunkingrequestknowledgerequestrequestbodyreturntype.md) | :heavy_minus_sign: | Return format: chunks (with metadata) or texts (plain strings) | |
13+
| `strategy` | [models.AgenticChunker](../models/agenticchunker.md) | :heavy_check_mark: | N/A | |
14+
| `model` | *str* | :heavy_check_mark: | Chat model to use for chunking. (Available models)[https://docs.orq.ai/docs/proxy#chat-models] | openai/gpt-4.1 |
15+
| `chunk_size` | *Optional[int]* | :heavy_minus_sign: | Maximum tokens per chunk | |
16+
| `candidate_size` | *Optional[int]* | :heavy_minus_sign: | Size of candidate splits for LLM evaluation | |
17+
| `min_characters_per_chunk` | *Optional[int]* | :heavy_minus_sign: | Minimum characters allowed per chunk | |

docs/models/chunkingrequestmode.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ChunkingRequestMode
2+
3+
Chunking mode: window-based or sentence-based similarity
4+
5+
6+
## Values
7+
8+
| Name | Value |
9+
| ---------- | ---------- |
10+
| `WINDOW` | window |
11+
| `SENTENCE` | sentence |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ChunkingRequestReturnType
2+
3+
Return format: chunks (with metadata) or texts (plain strings)
4+
5+
6+
## Values
7+
8+
| Name | Value |
9+
| -------- | -------- |
10+
| `CHUNKS` | chunks |
11+
| `TEXTS` | texts |
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# ChunkingRequestThreshold
2+
3+
Similarity threshold for grouping (0-1) or "auto" for automatic detection
4+
5+
6+
## Supported Types
7+
8+
### `float`
9+
10+
```python
11+
value: float = /* values here */
12+
```
13+
14+
### `models.ChunkTextThreshold2`
15+
16+
```python
17+
value: models.ChunkTextThreshold2 = /* values here */
18+
```
19+

docs/models/chunks.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Chunks
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
8+
| `text` | *str* | :heavy_check_mark: | The text content of the chunk |
9+
| `index` | *float* | :heavy_check_mark: | The position index of this chunk in the sequence |
10+
| `metadata` | [Optional[models.ChunkTextMetadata]](../models/chunktextmetadata.md) | :heavy_minus_sign: | N/A |

0 commit comments

Comments
 (0)