A deployment conversation.
| KEY | TYPE | Description |
|---|---|---|
| deploymentConversationId | str | The unique identifier of the deployment conversation. |
| name | str | The name of the deployment conversation. |
| deploymentId | str | The deployment id associated with the deployment conversation. |
| ownerUserId | str | The user id of the owner of the deployment conversation. |
| ownerOrgId | str | The organization id of the owner of the deployment conversation. |
| createdAt | str | The timestamp at which the deployment conversation was created. |
| lastEventCreatedAt | str | The timestamp at which the most recent corresponding deployment conversation event was created at. |
| hasHistory | bool | Whether the deployment conversation has any history. |
| externalSessionId | str | The external session id associated with the deployment conversation. |
| regenerateAttempt | int | The sequence number of regeneration. Not regenerated if 0. |
| externalApplicationId | str | The external application id associated with the deployment conversation. |
| unusedDocumentUploadIds | List[str] | The list of unused document upload ids associated with the deployment conversation. |
| humanizeInstructions | dict | Instructions for humanizing the conversation. |
| conversationWarning | str | Extra text associated with the deployment conversation (to show it at the bottom of chatbot). |
| conversationType | str | The type of the conversation, which depicts the application it caters to. |
| metadata | dict | Additional backend information about the conversation. |
| llmDisplayName | str | The display name of the LLM model used to generate the most recent response. Only used for system-created bots. |
| llmBotIcon | str | The icon location of the LLM model used to generate the most recent response. Only used for system-created bots. |
| searchSuggestions | List | The list of search suggestions for the conversation. |
| chatllmTaskId | str | The chatllm task id associated with the deployment conversation. |
| conversationStatus | str | The status of the deployment conversation (used for deep agent conversations). |
| computerStatus | str | The status of the computer associated with the deployment conversation (used for deep agent conversations). |
| filesystemStatus | str | The status of the filesystem associated with the deployment conversation (used for deep agent conversations). |
| totalEvents | int | The total number of events in the deployment conversation. |
| contestNames | List[str] | Names of contests that this deployment is a part of. |
| daemonTaskId | str | The daemon task id associated with the deployment conversation. |
| parentDeploymentConversationId | str | The parent deployment conversation id associated with the deployment conversation. |
| introMessage | str | The intro message for the deployment conversation. |
| previewInfo | dict | App preview info. |
| latestContext | dict | dict containing a list of important segments for pagination in deepagent. |
| history | DeploymentConversationEvent | The history of the deployment conversation. |
| hostedArtifacts | HostedArtifact | Artifacts that have been deployed by this conversation. |