Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade compiler, http, rest and openapi3 library to 0.59.1 fix #30188

Merged
merged 3 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
regen
  • Loading branch information
timotheeguerin committed Aug 13, 2024
commit 4161446e2588b3eb73e8f54980013e356181f2f4
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this the the openpai3 bug fix where we mis interpreted the explode default value in openapi3 query params(explode: true) but in TypeSpec its always explode: false by default.

- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of assistants.
Expand Down Expand Up @@ -159,6 +163,7 @@ paths:
description: A value that, when provided, limits list results to files matching the corresponding purpose.
schema:
$ref: '#/components/schemas/FilePurpose'
explode: false
responses:
'200':
description: The requested list of files.
Expand Down Expand Up @@ -391,25 +396,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of messages.
Expand Down Expand Up @@ -547,25 +556,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of thread runs.
Expand Down Expand Up @@ -709,25 +722,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of run steps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of assistants.
Expand Down Expand Up @@ -159,6 +163,7 @@ paths:
description: A value that, when provided, limits list results to files matching the corresponding purpose.
schema:
$ref: '#/components/schemas/FilePurpose'
explode: false
responses:
'200':
description: The requested list of files.
Expand Down Expand Up @@ -389,6 +394,7 @@ paths:
description: Filter messages by the run ID that generated them.
schema:
type: string
explode: false
- name: limit
in: query
required: false
Expand All @@ -397,25 +403,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of messages.
Expand Down Expand Up @@ -553,25 +563,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of thread runs.
Expand Down Expand Up @@ -715,25 +729,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The requested list of run steps.
Expand Down Expand Up @@ -853,25 +871,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down Expand Up @@ -1088,6 +1110,7 @@ paths:
description: Filter by file status.
schema:
$ref: '#/components/schemas/VectorStoreFileStatusFilter'
explode: false
- name: limit
in: query
required: false
Expand All @@ -1096,25 +1119,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down Expand Up @@ -1166,6 +1193,7 @@ paths:
description: Filter by file status.
schema:
$ref: '#/components/schemas/VectorStoreFileStatusFilter'
explode: false
- name: limit
in: query
required: false
Expand All @@ -1174,25 +1202,29 @@ paths:
type: integer
format: int32
default: 20
explode: false
- name: order
in: query
required: false
description: Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
schema:
$ref: '#/components/schemas/ListSortOrder'
default: desc
explode: false
- name: after
in: query
required: false
description: A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
schema:
type: string
explode: false
- name: before
in: query
required: false
description: A cursor for use in pagination. before is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include before=obj_foo in order to fetch the previous page of the list.
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down