Skip to content

Commit 4e02d4e

Browse files
authored
OPIK-546: Update create chat completions spec and SDKs (#892)
1 parent ab6d79c commit 4e02d4e

File tree

76 files changed

+527
-128
lines changed

Some content is hidden

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

76 files changed

+527
-128
lines changed

apps/opik-documentation/documentation/rest_api/opik.yaml

+60-4
Original file line numberDiff line numberDiff line change
@@ -145,16 +145,16 @@ paths:
145145
post:
146146
tags:
147147
- Chat Completions
148-
summary: Get chat completions
149-
description: Get chat completions
150-
operationId: getChatCompletions
148+
summary: Create chat completions
149+
description: Create chat completions
150+
operationId: createChatCompletions
151151
requestBody:
152152
content:
153153
application/json:
154154
schema:
155155
$ref: '#/components/schemas/ChatCompletionRequest'
156156
responses:
157-
"501":
157+
"200":
158158
description: Chat completions response
159159
content:
160160
text/event-stream:
@@ -3785,6 +3785,8 @@ components:
37853785
items:
37863786
type: string
37873787
ProviderApiKey_Public:
3788+
required:
3789+
- provider
37883790
type: object
37893791
properties:
37903792
id:
@@ -3812,6 +3814,7 @@ components:
38123814
ProviderApiKey:
38133815
required:
38143816
- api_key
3817+
- provider
38153818
type: object
38163819
properties:
38173820
id:
@@ -3841,6 +3844,7 @@ components:
38413844
ProviderApiKey_Write:
38423845
required:
38433846
- api_key
3847+
- provider
38443848
type: object
38453849
properties:
38463850
provider:
@@ -4291,6 +4295,18 @@ components:
42914295
description:
42924296
pattern: (?s)^\s*(\S.*\S|\S)\s*$
42934297
type: string
4298+
ErrorInfo:
4299+
required:
4300+
- exception_type
4301+
- traceback
4302+
type: object
4303+
properties:
4304+
exception_type:
4305+
type: string
4306+
message:
4307+
type: string
4308+
traceback:
4309+
type: string
42944310
Span:
42954311
required:
42964312
- name
@@ -4350,6 +4366,8 @@ components:
43504366
additionalProperties:
43514367
type: integer
43524368
format: int32
4369+
error_info:
4370+
$ref: '#/components/schemas/ErrorInfo'
43534371
created_at:
43544372
type: string
43554373
format: date-time
@@ -4372,6 +4390,18 @@ components:
43724390
total_estimated_cost:
43734391
type: number
43744392
readOnly: true
4393+
ErrorInfo_Write:
4394+
required:
4395+
- exception_type
4396+
- traceback
4397+
type: object
4398+
properties:
4399+
exception_type:
4400+
type: string
4401+
message:
4402+
type: string
4403+
traceback:
4404+
type: string
43754405
Span_Write:
43764406
required:
43774407
- name
@@ -4427,6 +4457,8 @@ components:
44274457
additionalProperties:
44284458
type: integer
44294459
format: int32
4460+
error_info:
4461+
$ref: '#/components/schemas/ErrorInfo_Write'
44304462
SpanBatch:
44314463
required:
44324464
- spans
@@ -4456,6 +4488,18 @@ components:
44564488
properties:
44574489
name:
44584490
type: string
4491+
ErrorInfo_Public:
4492+
required:
4493+
- exception_type
4494+
- traceback
4495+
type: object
4496+
properties:
4497+
exception_type:
4498+
type: string
4499+
message:
4500+
type: string
4501+
traceback:
4502+
type: string
44594503
FeedbackScore_Public:
44604504
required:
44614505
- name
@@ -4550,6 +4594,8 @@ components:
45504594
additionalProperties:
45514595
type: integer
45524596
format: int32
4597+
error_info:
4598+
$ref: '#/components/schemas/ErrorInfo_Public'
45534599
created_at:
45544600
type: string
45554601
format: date-time
@@ -4733,6 +4779,8 @@ components:
47334779
additionalProperties:
47344780
type: integer
47354781
format: int32
4782+
error_info:
4783+
$ref: '#/components/schemas/ErrorInfo'
47364784
Trace:
47374785
required:
47384786
- name
@@ -4769,6 +4817,8 @@ components:
47694817
type: array
47704818
items:
47714819
type: string
4820+
error_info:
4821+
$ref: '#/components/schemas/ErrorInfo'
47724822
usage:
47734823
type: object
47744824
additionalProperties:
@@ -4830,6 +4880,8 @@ components:
48304880
type: array
48314881
items:
48324882
type: string
4883+
error_info:
4884+
$ref: '#/components/schemas/ErrorInfo_Write'
48334885
TraceBatch:
48344886
required:
48354887
- traces
@@ -4884,6 +4936,8 @@ components:
48844936
type: array
48854937
items:
48864938
type: string
4939+
error_info:
4940+
$ref: '#/components/schemas/ErrorInfo_Public'
48874941
usage:
48884942
type: object
48894943
additionalProperties:
@@ -4955,3 +5009,5 @@ components:
49555009
type: array
49565010
items:
49575011
type: string
5012+
error_info:
5013+
$ref: '#/components/schemas/ErrorInfo'

sdks/code_generation/fern/openapi/openapi.yaml

+60-4
Original file line numberDiff line numberDiff line change
@@ -145,16 +145,16 @@ paths:
145145
post:
146146
tags:
147147
- Chat Completions
148-
summary: Get chat completions
149-
description: Get chat completions
150-
operationId: getChatCompletions
148+
summary: Create chat completions
149+
description: Create chat completions
150+
operationId: createChatCompletions
151151
requestBody:
152152
content:
153153
application/json:
154154
schema:
155155
$ref: '#/components/schemas/ChatCompletionRequest'
156156
responses:
157-
"501":
157+
"200":
158158
description: Chat completions response
159159
content:
160160
text/event-stream:
@@ -3785,6 +3785,8 @@ components:
37853785
items:
37863786
type: string
37873787
ProviderApiKey_Public:
3788+
required:
3789+
- provider
37883790
type: object
37893791
properties:
37903792
id:
@@ -3812,6 +3814,7 @@ components:
38123814
ProviderApiKey:
38133815
required:
38143816
- api_key
3817+
- provider
38153818
type: object
38163819
properties:
38173820
id:
@@ -3841,6 +3844,7 @@ components:
38413844
ProviderApiKey_Write:
38423845
required:
38433846
- api_key
3847+
- provider
38443848
type: object
38453849
properties:
38463850
provider:
@@ -4291,6 +4295,18 @@ components:
42914295
description:
42924296
pattern: (?s)^\s*(\S.*\S|\S)\s*$
42934297
type: string
4298+
ErrorInfo:
4299+
required:
4300+
- exception_type
4301+
- traceback
4302+
type: object
4303+
properties:
4304+
exception_type:
4305+
type: string
4306+
message:
4307+
type: string
4308+
traceback:
4309+
type: string
42944310
Span:
42954311
required:
42964312
- name
@@ -4350,6 +4366,8 @@ components:
43504366
additionalProperties:
43514367
type: integer
43524368
format: int32
4369+
error_info:
4370+
$ref: '#/components/schemas/ErrorInfo'
43534371
created_at:
43544372
type: string
43554373
format: date-time
@@ -4372,6 +4390,18 @@ components:
43724390
total_estimated_cost:
43734391
type: number
43744392
readOnly: true
4393+
ErrorInfo_Write:
4394+
required:
4395+
- exception_type
4396+
- traceback
4397+
type: object
4398+
properties:
4399+
exception_type:
4400+
type: string
4401+
message:
4402+
type: string
4403+
traceback:
4404+
type: string
43754405
Span_Write:
43764406
required:
43774407
- name
@@ -4427,6 +4457,8 @@ components:
44274457
additionalProperties:
44284458
type: integer
44294459
format: int32
4460+
error_info:
4461+
$ref: '#/components/schemas/ErrorInfo_Write'
44304462
SpanBatch:
44314463
required:
44324464
- spans
@@ -4456,6 +4488,18 @@ components:
44564488
properties:
44574489
name:
44584490
type: string
4491+
ErrorInfo_Public:
4492+
required:
4493+
- exception_type
4494+
- traceback
4495+
type: object
4496+
properties:
4497+
exception_type:
4498+
type: string
4499+
message:
4500+
type: string
4501+
traceback:
4502+
type: string
44594503
FeedbackScore_Public:
44604504
required:
44614505
- name
@@ -4550,6 +4594,8 @@ components:
45504594
additionalProperties:
45514595
type: integer
45524596
format: int32
4597+
error_info:
4598+
$ref: '#/components/schemas/ErrorInfo_Public'
45534599
created_at:
45544600
type: string
45554601
format: date-time
@@ -4733,6 +4779,8 @@ components:
47334779
additionalProperties:
47344780
type: integer
47354781
format: int32
4782+
error_info:
4783+
$ref: '#/components/schemas/ErrorInfo'
47364784
Trace:
47374785
required:
47384786
- name
@@ -4769,6 +4817,8 @@ components:
47694817
type: array
47704818
items:
47714819
type: string
4820+
error_info:
4821+
$ref: '#/components/schemas/ErrorInfo'
47724822
usage:
47734823
type: object
47744824
additionalProperties:
@@ -4830,6 +4880,8 @@ components:
48304880
type: array
48314881
items:
48324882
type: string
4883+
error_info:
4884+
$ref: '#/components/schemas/ErrorInfo_Write'
48334885
TraceBatch:
48344886
required:
48354887
- traces
@@ -4884,6 +4936,8 @@ components:
48844936
type: array
48854937
items:
48864938
type: string
4939+
error_info:
4940+
$ref: '#/components/schemas/ErrorInfo_Public'
48874941
usage:
48884942
type: object
48894943
additionalProperties:
@@ -4955,3 +5009,5 @@ components:
49555009
type: array
49565010
items:
49575011
type: string
5012+
error_info:
5013+
$ref: '#/components/schemas/ErrorInfo'

sdks/python/src/opik/rest_api/__init__.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
DeleteFeedbackScore,
4747
Delta,
4848
DeltaRole,
49+
ErrorInfo,
50+
ErrorInfoPublic,
51+
ErrorInfoWrite,
4952
ErrorMessage,
5053
ErrorMessageDetail,
5154
ErrorMessagePublic,
@@ -92,7 +95,6 @@
9295
JsonSchema,
9396
JsonSchemaElement,
9497
Message,
95-
NotImplementedErrorBodyItem,
9698
NumericalFeedbackDefinition,
9799
NumericalFeedbackDefinitionCreate,
98100
NumericalFeedbackDefinitionPublic,
@@ -235,6 +237,9 @@
235237
"DeleteFeedbackScore",
236238
"Delta",
237239
"DeltaRole",
240+
"ErrorInfo",
241+
"ErrorInfoPublic",
242+
"ErrorInfoWrite",
238243
"ErrorMessage",
239244
"ErrorMessageDetail",
240245
"ErrorMessagePublic",
@@ -288,7 +293,6 @@
288293
"Message",
289294
"NotFoundError",
290295
"NotImplementedError",
291-
"NotImplementedErrorBodyItem",
292296
"NumericalFeedbackDefinition",
293297
"NumericalFeedbackDefinitionCreate",
294298
"NumericalFeedbackDefinitionPublic",

0 commit comments

Comments
 (0)