Skip to content

Commit ac0cadb

Browse files
authored
feat(specs): add transformation copilot to ingestion (#3479)
1 parent 1034d8e commit ac0cadb

File tree

5 files changed

+62
-1
lines changed

5 files changed

+62
-1
lines changed

scripts/cts/runCts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async function runCtsOne(language: Language, suites: Record<CTSType, boolean>):
123123
break;
124124
case 'swift':
125125
await run(
126-
`swift test -Xswiftc -suppress-warnings --parallel ${filter((f) => `--filter ${f}.*`)}`,
126+
`swift test -Xswiftc -suppress-warnings --parallel ${filter((f) => `--filter "${f}.*"`)}`,
127127
{
128128
cwd,
129129
language,

specs/ingestion/common/schemas/transformation.yml

+21
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,24 @@ TransformationTryResponse:
119119
type: string
120120
required:
121121
- payloads
122+
123+
Model:
124+
type: object
125+
additionalProperties: false
126+
properties:
127+
fullname:
128+
type: string
129+
modelName:
130+
type: string
131+
systemPrompt:
132+
type: string
133+
id:
134+
type: string
135+
provider:
136+
type: string
137+
required:
138+
- fullname
139+
- modelName
140+
- systemPrompt
141+
- id
142+
- provider
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
get:
2+
tags:
3+
- transformations
4+
summary: Retrieve existing LLM transformation helpers
5+
description: Retrieves a list of existing LLM transformation helpers.
6+
operationId: listTransformationModels
7+
x-acl:
8+
- addObject
9+
- deleteIndex
10+
- editSettings
11+
responses:
12+
'200':
13+
description: OK
14+
content:
15+
application/json:
16+
schema:
17+
title: transformationModels
18+
type: object
19+
description: List of available AI models for transformation purposes.
20+
additionalProperties: false
21+
properties:
22+
llms:
23+
type: array
24+
items:
25+
$ref: '../../common/schemas/transformation.yml#/Model'
26+
required:
27+
- llms
28+
'400':
29+
$ref: '../../../common/responses/BadRequest.yml'

specs/ingestion/spec.yml

+2
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ paths:
175175
$ref: 'paths/transformations/transformationsTry.yml'
176176
/1/transformations/search:
177177
$ref: 'paths/transformations/transformationsSearch.yml'
178+
/1/transformations/copilot:
179+
$ref: 'paths/transformations/transformationsModels.yml'
178180
/1/transformations/{transformationID}:
179181
$ref: 'paths/transformations/transformationID.yml'
180182

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
{
3+
"parameters": {},
4+
"request": {
5+
"path": "/1/transformations/copilot",
6+
"method": "GET"
7+
}
8+
}
9+
]

0 commit comments

Comments
 (0)