parent
0e10952b45
commit
fe2d16004c
|
|
@ -63,14 +63,14 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
example: 2025-01-01T11:28:36.000Z
|
example: 2025-01-01T11:28:36.000Z
|
||||||
format: date-time
|
format: date-time
|
||||||
description: Filter by start date
|
description: Filter by start date
|
||||||
- in: query
|
- in: query
|
||||||
name: endDate
|
name: endDate
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
example: 2025-01-13T11:28:36.000Z
|
example: 2025-01-13T11:28:36.000Z
|
||||||
format: date-time
|
format: date-time
|
||||||
description: Filter by end date
|
description: Filter by end date
|
||||||
- in: query
|
- in: query
|
||||||
name: feedback
|
name: feedback
|
||||||
|
|
@ -206,7 +206,7 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/Assistant'
|
$ref: '#/components/schemas/Assistant'
|
||||||
'500':
|
'500':
|
||||||
description: Internal error
|
description: Internal error
|
||||||
/assistants/{id}:
|
/assistants/{id}:
|
||||||
|
|
@ -264,7 +264,7 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/assistant'
|
$ref: '#/components/schemas/Assistant'
|
||||||
'400':
|
'400':
|
||||||
description: The specified ID is invalid or body is missing
|
description: The specified ID is invalid or body is missing
|
||||||
'404':
|
'404':
|
||||||
|
|
@ -553,12 +553,12 @@ paths:
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: A list of document stores
|
description: A list of document stores
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/DocumentStore'
|
$ref: '#/components/schemas/DocumentStore'
|
||||||
'500':
|
'500':
|
||||||
description: Internal server error
|
description: Internal server error
|
||||||
|
|
||||||
|
|
@ -778,7 +778,8 @@ paths:
|
||||||
'200':
|
'200':
|
||||||
description: Successfully execute refresh operation
|
description: Successfully execute refresh operation
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/schemas/VectorUpsertResponse'
|
$ref: '#/components/schemas/VectorUpsertResponse'
|
||||||
|
|
@ -1035,8 +1036,8 @@ paths:
|
||||||
required: true
|
required: true
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: Feedback successfully created
|
description: Feedback successfully created
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ChatMessageFeedback'
|
$ref: '#/components/schemas/ChatMessageFeedback'
|
||||||
|
|
@ -1447,7 +1448,7 @@ paths:
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: id
|
name: id
|
||||||
required: false
|
required: true
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
description: Chatflow ID to filter records by
|
description: Chatflow ID to filter records by
|
||||||
|
|
@ -2036,7 +2037,7 @@ components:
|
||||||
properties:
|
properties:
|
||||||
type:
|
type:
|
||||||
type: string
|
type: string
|
||||||
enum: [audio, url, file, file:rag, file:full]
|
enum: [audio, url, file, 'file:rag', 'file:full']
|
||||||
description: The type of file upload
|
description: The type of file upload
|
||||||
example: file
|
example: file
|
||||||
name:
|
name:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue