Skip to content

Commit 9c84e8a

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.82.5
1 parent 7aa436a commit 9c84e8a

File tree

156 files changed

+1652
-830
lines changed

Some content is hidden

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

156 files changed

+1652
-830
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ from airbyte.models import shared
3131

3232
s = airbyte.Airbyte(
3333
security=shared.Security(
34-
bearer_auth="",
34+
basic_auth=shared.SchemeBasicAuth(
35+
password="",
36+
username="",
37+
),
3538
),
3639
)
3740

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,4 +558,14 @@ Based on:
558558
### Generated
559559
- [python v0.35.3] .
560560
### Releases
561-
- [PyPI v0.35.3] https://pypi.org/project/airbyte-api/0.35.3 - .
561+
- [PyPI v0.35.3] https://pypi.org/project/airbyte-api/0.35.3 - .
562+
563+
## 2023-09-12 16:21:57
564+
### Changes
565+
Based on:
566+
- OpenAPI Doc 1.0.0
567+
- Speakeasy CLI 1.82.5 (2.108.3) https://github.com/speakeasy-api/speakeasy
568+
### Generated
569+
- [python v0.35.4] .
570+
### Releases
571+
- [PyPI v0.35.4] https://pypi.org/project/airbyte-api/0.35.4 - .

USAGE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ from airbyte.models import shared
77

88
s = airbyte.Airbyte(
99
security=shared.Security(
10-
bearer_auth="",
10+
basic_auth=shared.SchemeBasicAuth(
11+
password="",
12+
username="",
13+
),
1114
),
1215
)
1316

docs/models/shared/destinationbigquery.md

Lines changed: 2 additions & 3 deletions
Large diffs are not rendered by default.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# DestinationMilvus
2+
3+
The values required to configure the destination.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
10+
| `destination_type` | [DestinationMilvusMilvus](../../models/shared/destinationmilvusmilvus.md) | :heavy_check_mark: | N/A |
11+
| `embedding` | *Any* | :heavy_check_mark: | Embedding configuration |
12+
| `indexing` | [DestinationMilvusIndexing](../../models/shared/destinationmilvusindexing.md) | :heavy_check_mark: | Indexing configuration |
13+
| `processing` | [DestinationMilvusProcessingConfigModel](../../models/shared/destinationmilvusprocessingconfigmodel.md) | :heavy_check_mark: | N/A |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# DestinationMilvusEmbeddingCohere
2+
3+
Use the Cohere API to embed text.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
10+
| `cohere_key` | *str* | :heavy_check_mark: | N/A |
11+
| `mode` | [Optional[DestinationMilvusEmbeddingCohereMode]](../../models/shared/destinationmilvusembeddingcoheremode.md) | :heavy_minus_sign: | N/A |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DestinationMilvusEmbeddingCohereMode
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| -------- | -------- |
8+
| `COHERE` | cohere |
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# DestinationMilvusEmbeddingFake
2+
3+
Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
10+
| `mode` | [Optional[DestinationMilvusEmbeddingFakeMode]](../../models/shared/destinationmilvusembeddingfakemode.md) | :heavy_minus_sign: | N/A |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DestinationMilvusEmbeddingFakeMode
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------ | ------ |
8+
| `FAKE` | fake |
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DestinationMilvusEmbeddingFromField
2+
3+
Use a field in the record as the embedding. This is useful if you already have an embedding for your data and want to store it in the vector store.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
10+
| `dimensions` | *int* | :heavy_check_mark: | The number of dimensions the embedding model is generating | 1536 |
11+
| `field_name` | *str* | :heavy_check_mark: | Name of the field in the record that contains the embedding | embedding |
12+
| `mode` | [Optional[DestinationMilvusEmbeddingFromFieldMode]](../../models/shared/destinationmilvusembeddingfromfieldmode.md) | :heavy_minus_sign: | N/A | |

0 commit comments

Comments
 (0)