Skip to content

Commit 8f60cf5

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.74.3
1 parent 7dbe2aa commit 8f60cf5

File tree

123 files changed

+1307
-1394
lines changed

Some content is hidden

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

123 files changed

+1307
-1394
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
2121
### Gradle
2222

2323
```groovy
24-
implementation 'com.airbyte.api:public-api:0.36.1'
24+
implementation 'com.airbyte.api:public-api:0.36.2'
2525
```
2626
<!-- End SDK Installation -->
2727

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,4 +661,14 @@ Based on:
661661
### Generated
662662
- [java v0.36.1] .
663663
### Releases
664-
- [Maven Central v0.36.1] https://central.sonatype.com/artifact/com.airbyte/api/0.36.1 - .
664+
- [Maven Central v0.36.1] https://central.sonatype.com/artifact/com.airbyte/api/0.36.1 - .
665+
666+
## 2023-08-21 14:52:53
667+
### Changes
668+
Based on:
669+
- OpenAPI Doc 1.0.0
670+
- Speakeasy CLI 1.74.3 (2.86.6) https://github.com/speakeasy-api/speakeasy
671+
### Generated
672+
- [java v0.36.2] .
673+
### Releases
674+
- [Maven Central v0.36.2] https://central.sonatype.com/artifact/com.airbyte/api/0.36.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
| `jobType` | [com.airbyte.api.models.shared.JobTypeEnum](../../models/shared/JobTypeEnum.md) | :heavy_minus_sign: | Filter the Jobs by jobType. |
1212
| `limit` | *Integer* | :heavy_minus_sign: | Set the limit on the number of Jobs returned. The default is 20 Jobs. |
1313
| `offset` | *Integer* | :heavy_minus_sign: | Set the offset to start at when returning Jobs. The default is 0. |
14+
| `orderBy` | *String* | :heavy_minus_sign: | The field and method to use for ordering. Currently allowed are createdAt and updatedAt. |
1415
| `status` | [com.airbyte.api.models.shared.JobStatusEnum](../../models/shared/JobStatusEnum.md) | :heavy_minus_sign: | The Job status you want to filter by |
1516
| `updatedAtEnd` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The end date to filter by |
1617
| `updatedAtStart` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :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+
| `destinationType` | [DestinationLangchainLangchain](../../models/shared/DestinationLangchainLangchain.md) | :heavy_check_mark: | N/A |
11+
| `embedding` | *Object* | :heavy_check_mark: | Embedding configuration |
12+
| `indexing` | *Object* | :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` | [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` | [DestinationLangchainEmbeddingOpenAIMode](../../models/shared/DestinationLangchainEmbeddingOpenAIMode.md) | :heavy_minus_sign: | N/A |
11+
| `openaiKey` | *String* | :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+
| `collectionName` | *String* | :heavy_minus_sign: | Name of the collection to use. | |
11+
| `destinationPath` | *String* | :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` | [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)