-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(specs): add transformation copilot to ingestion (generated)
algolia/api-clients-automation#3479 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com>
- Loading branch information
1 parent
9af2f15
commit 2f2c6ae
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
client/src/commonMain/kotlin/com/algolia/client/model/ingestion/Model.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */ | ||
package com.algolia.client.model.ingestion | ||
|
||
import kotlinx.serialization.* | ||
import kotlinx.serialization.json.* | ||
|
||
/** | ||
* Model | ||
* | ||
* @param fullname | ||
* @param modelName | ||
* @param systemPrompt | ||
* @param id | ||
* @param provider | ||
*/ | ||
@Serializable | ||
public data class Model( | ||
|
||
@SerialName(value = "fullname") val fullname: String, | ||
|
||
@SerialName(value = "modelName") val modelName: String, | ||
|
||
@SerialName(value = "systemPrompt") val systemPrompt: String, | ||
|
||
@SerialName(value = "id") val id: String, | ||
|
||
@SerialName(value = "provider") val provider: String, | ||
) |
16 changes: 16 additions & 0 deletions
16
client/src/commonMain/kotlin/com/algolia/client/model/ingestion/TransformationModels.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */ | ||
package com.algolia.client.model.ingestion | ||
|
||
import kotlinx.serialization.* | ||
import kotlinx.serialization.json.* | ||
|
||
/** | ||
* List of available AI models for transformation purposes. | ||
* | ||
* @param llms | ||
*/ | ||
@Serializable | ||
public data class TransformationModels( | ||
|
||
@SerialName(value = "llms") val llms: List<Model>, | ||
) |