Skip to content

Commit f4b4c30

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.74.3
1 parent dc14bee commit f4b4c30

File tree

82 files changed

+741
-792
lines changed

Some content is hidden

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

82 files changed

+741
-792
lines changed

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,14 @@ Based on:
468468
### Generated
469469
- [python v0.32.1] .
470470
### Releases
471-
- [PyPI v0.32.1] https://pypi.org/project/airbyte-api/0.32.1 - .
471+
- [PyPI v0.32.1] https://pypi.org/project/airbyte-api/0.32.1 - .
472+
473+
## 2023-08-21 14:53:00
474+
### Changes
475+
Based on:
476+
- OpenAPI Doc 1.0.0
477+
- Speakeasy CLI 1.74.3 (2.86.6) https://github.com/speakeasy-api/speakeasy
478+
### Generated
479+
- [python v0.32.2] .
480+
### Releases
481+
- [PyPI v0.32.2] https://pypi.org/project/airbyte-api/0.32.2 - .

docs/models/operations/listjobsrequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
| `job_type` | [Optional[shared.JobTypeEnum]](../../models/shared/jobtypeenum.md) | :heavy_minus_sign: | Filter the Jobs by jobType. |
1212
| `limit` | *Optional[int]* | :heavy_minus_sign: | Set the limit on the number of Jobs returned. The default is 20 Jobs. |
1313
| `offset` | *Optional[int]* | :heavy_minus_sign: | Set the offset to start at when returning Jobs. The default is 0. |
14+
| `order_by` | *Optional[str]* | :heavy_minus_sign: | The field and method to use for ordering. Currently allowed are createdAt and updatedAt. |
1415
| `status` | [Optional[shared.JobStatusEnum]](../../models/shared/jobstatusenum.md) | :heavy_minus_sign: | The Job status you want to filter by |
1516
| `updated_at_end` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | The end date to filter by |
1617
| `updated_at_start` | [date](https://docs.python.org/3/library/datetime.html#date-objects) | :heavy_minus_sign: | The start date to filter by |
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# DestinationLangchain
2+
3+
The values required to configure the destination.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
10+
| `destination_type` | [DestinationLangchainLangchain](../../models/shared/destinationlangchainlangchain.md) | :heavy_check_mark: | N/A |
11+
| `embedding` | *Any* | :heavy_check_mark: | Embedding configuration |
12+
| `indexing` | *Any* | :heavy_check_mark: | Indexing configuration |
13+
| `processing` | [DestinationLangchainProcessingConfigModel](../../models/shared/destinationlangchainprocessingconfigmodel.md) | :heavy_check_mark: | N/A |
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# DestinationLangchainEmbeddingFake
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[DestinationLangchainEmbeddingFakeMode]](../../models/shared/destinationlangchainembeddingfakemode.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+
# DestinationLangchainEmbeddingFakeMode
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| ------ | ------ |
8+
| `FAKE` | fake |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# DestinationLangchainEmbeddingOpenAI
2+
3+
Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description |
9+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
10+
| `mode` | [Optional[DestinationLangchainEmbeddingOpenAIMode]](../../models/shared/destinationlangchainembeddingopenaimode.md) | :heavy_minus_sign: | N/A |
11+
| `openai_key` | *str* | :heavy_check_mark: | N/A |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# DestinationLangchainEmbeddingOpenAIMode
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| -------- | -------- |
8+
| `OPENAI` | openai |
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DestinationLangchainIndexingChromaLocalPersistance
2+
3+
Chroma is a popular vector store that can be used to store and retrieve embeddings. It will build its index in memory and persist it to disk by the end of the sync.
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
10+
| `collection_name` | *Optional[str]* | :heavy_minus_sign: | Name of the collection to use. | |
11+
| `destination_path` | *str* | :heavy_check_mark: | Path to the directory where chroma files will be written. The files will be placed inside that local mount. | /local/my_chroma_db |
12+
| `mode` | [Optional[DestinationLangchainIndexingChromaLocalPersistanceMode]](../../models/shared/destinationlangchainindexingchromalocalpersistancemode.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+
# DestinationLangchainIndexingChromaLocalPersistanceMode
2+
3+
4+
## Values
5+
6+
| Name | Value |
7+
| -------------- | -------------- |
8+
| `CHROMA_LOCAL` | chroma_local |

0 commit comments

Comments
 (0)