Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
58 changes: 51 additions & 7 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1597,15 +1597,36 @@
"properties": {
"conversation_id": {
"type": "string",
"title": "Conversation Id"
"title": "Conversation Id",
"description": "Conversation ID (UUID)",
"examples": [
"c5260aec-4d82-4370-9fdf-05cf908b3f16"
]
},
"chat_history": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array",
"title": "Chat History"
"title": "Chat History",
"description": "The simplified chat history as a list of conversation turns",
"examples": [
{
"completed_at": "2024-01-01T00:01:05Z",
"messages": [
{
"content": "Hello",
"type": "user"
},
{
"content": "Hi there!",
"type": "assistant"
}
],
"started_at": "2024-01-01T00:01:00Z"
}
]
}
},
"type": "object",
Expand Down Expand Up @@ -1979,7 +2000,11 @@
"properties": {
"response": {
"type": "string",
"title": "Response"
"title": "Response",
"description": "The response of the feedback request.",
"examples": [
"feedback received"
]
}
},
"type": "object",
Expand Down Expand Up @@ -2041,7 +2066,11 @@
"properties": {
"detail": {
"type": "string",
"title": "Detail"
"title": "Detail",
"description": "Details about the authorization issue",
"examples": [
"Missing or invalid credentials provided by client"
]
}
},
"type": "object",
Expand Down Expand Up @@ -2715,6 +2744,7 @@
},
"type": "array",
"title": "Rag Chunks",
"description": "List of RAG chunks used to generate the response",
"default": []
},
"tool_calls": {
Expand Down Expand Up @@ -2964,12 +2994,22 @@
"properties": {
"functionality": {
"type": "string",
"title": "Functionality"
"title": "Functionality",
"description": "The functionality of the service",
"examples": [
"feedback"
]
},
"status": {
"additionalProperties": true,
"type": "object",
"title": "Status"
"title": "Status",
"description": "The status of the service",
"examples": [
{
"enabled": true
}
]
}
},
"type": "object",
Expand Down Expand Up @@ -3071,7 +3111,11 @@
"properties": {
"detail": {
"type": "string",
"title": "Detail"
"title": "Detail",
"description": "Details about the authorization issue",
"examples": [
"Missing or invalid credentials provided by client"
]
}
},
"type": "object",
Expand Down
16 changes: 8 additions & 8 deletions docs/openapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| conversation_id | string | |
| chat_history | array | |
| conversation_id | string | Conversation ID (UUID) |
| chat_history | array | The simplified chat history as a list of conversation turns |


## ConversationsListResponse
Expand Down Expand Up @@ -931,7 +931,7 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| response | string | |
| response | string | The response of the feedback request. |


## FeedbackStatusUpdateRequest
Expand Down Expand Up @@ -989,7 +989,7 @@ Model representing response for forbidden access.

| Field | Type | Description |
|-------|------|-------------|
| detail | string | |
| detail | string | Details about the authorization issue |


## HTTPValidationError
Expand Down Expand Up @@ -1247,7 +1247,7 @@ Attributes:
|-------|------|-------------|
| conversation_id | | The optional conversation ID (UUID) |
| response | string | Response from LLM |
| rag_chunks | array | |
| rag_chunks | array | List of RAG chunks used to generate the response |
| tool_calls | | List of tool calls made during response generation |
| referenced_documents | array | List of documents referenced in generating the response |

Expand Down Expand Up @@ -1363,8 +1363,8 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| functionality | string | |
| status | object | |
| functionality | string | The functionality of the service |
| status | object | The status of the service |


## TLSConfiguration
Expand Down Expand Up @@ -1401,7 +1401,7 @@ Model representing response for missing or invalid credentials.

| Field | Type | Description |
|-------|------|-------------|
| detail | string | |
| detail | string | Details about the authorization issue |


## UserDataCollection
Expand Down
16 changes: 8 additions & 8 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,8 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| conversation_id | string | |
| chat_history | array | |
| conversation_id | string | Conversation ID (UUID) |
| chat_history | array | The simplified chat history as a list of conversation turns |


## ConversationsListResponse
Expand Down Expand Up @@ -931,7 +931,7 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| response | string | |
| response | string | The response of the feedback request. |


## FeedbackStatusUpdateRequest
Expand Down Expand Up @@ -989,7 +989,7 @@ Model representing response for forbidden access.

| Field | Type | Description |
|-------|------|-------------|
| detail | string | |
| detail | string | Details about the authorization issue |


## HTTPValidationError
Expand Down Expand Up @@ -1247,7 +1247,7 @@ Attributes:
|-------|------|-------------|
| conversation_id | | The optional conversation ID (UUID) |
| response | string | Response from LLM |
| rag_chunks | array | |
| rag_chunks | array | List of RAG chunks used to generate the response |
| tool_calls | | List of tool calls made during response generation |
| referenced_documents | array | List of documents referenced in generating the response |

Expand Down Expand Up @@ -1363,8 +1363,8 @@ Example:

| Field | Type | Description |
|-------|------|-------------|
| functionality | string | |
| status | object | |
| functionality | string | The functionality of the service |
| status | object | The status of the service |


## TLSConfiguration
Expand Down Expand Up @@ -1401,7 +1401,7 @@ Model representing response for missing or invalid credentials.

| Field | Type | Description |
|-------|------|-------------|
| detail | string | |
| detail | string | Details about the authorization issue |


## UserDataCollection
Expand Down
Loading