File tree Expand file tree Collapse file tree 4 files changed +45
-19
lines changed Expand file tree Collapse file tree 4 files changed +45
-19
lines changed Original file line number Diff line number Diff line change 11001100 "properties" : {
11011101 "conversation_id" : {
11021102 "type" : " string" ,
1103- "title" : " Conversation Id"
1103+ "title" : " Conversation Id" ,
1104+ "description" : " Conversation ID (UUID)" ,
1105+ "examples" : [
1106+ " c5260aec-4d82-4370-9fdf-05cf908b3f16"
1107+ ]
11041108 },
11051109 "created_at" : {
11061110 "anyOf" : [
11111115 "type" : " null"
11121116 }
11131117 ],
1114- "title" : " Created At"
1118+ "title" : " Created At" ,
1119+ "description" : " When the conversation was created" ,
1120+ "examples" : [
1121+ " 2024-01-01T01:00:00Z"
1122+ ]
11151123 },
11161124 "last_message_at" : {
11171125 "anyOf" : [
11221130 "type" : " null"
11231131 }
11241132 ],
1125- "title" : " Last Message At"
1133+ "title" : " Last Message At" ,
1134+ "description" : " When the last message was sent" ,
1135+ "examples" : [
1136+ " 2024-01-01T01:00:00Z"
1137+ ]
11261138 },
11271139 "message_count" : {
11281140 "anyOf" : [
11331145 "type" : " null"
11341146 }
11351147 ],
1136- "title" : " Message Count"
1148+ "title" : " Message Count" ,
1149+ "description" : " Number of user messages in the conversation" ,
1150+ "examples" : [
1151+ 42
1152+ ]
11371153 },
11381154 "last_used_model" : {
11391155 "anyOf" : [
11441160 "type" : " null"
11451161 }
11461162 ],
1147- "title" : " Last Used Model"
1163+ "title" : " Last Used Model" ,
1164+ "description" : " Identification of the last model used for the conversation" ,
1165+ "examples" : [
1166+ " gpt-4-turbo" ,
1167+ " gpt-3.5-turbo-0125"
1168+ ]
11481169 },
11491170 "last_used_provider" : {
11501171 "anyOf" : [
11551176 "type" : " null"
11561177 }
11571178 ],
1158- "title" : " Last Used Provider"
1179+ "title" : " Last Used Provider" ,
1180+ "description" : " Identification of the last provider used for the conversation" ,
1181+ "examples" : [
1182+ " openai" ,
1183+ " gemini"
1184+ ]
11591185 }
11601186 },
11611187 "type" : " object" ,
Original file line number Diff line number Diff line change @@ -609,12 +609,12 @@ Example:
609609
610610| Field | Type | Description |
611611| -------| ------| -------------|
612- | conversation_id | string | |
613- | created_at | | |
614- | last_message_at | | |
615- | message_count | | |
616- | last_used_model | | |
617- | last_used_provider | | |
612+ | conversation_id | string | Conversation ID (UUID) |
613+ | created_at | | When the conversation was created |
614+ | last_message_at | | When the last message was sent |
615+ | message_count | | Number of user messages in the conversation |
616+ | last_used_model | | Identification of the last model used for the conversation |
617+ | last_used_provider | | Identification of the last provider used for the conversation |
618618
619619
620620## ConversationResponse
Original file line number Diff line number Diff line change @@ -609,12 +609,12 @@ Example:
609609
610610| Field | Type | Description |
611611| -------| ------| -------------|
612- | conversation_id | string | |
613- | created_at | | |
614- | last_message_at | | |
615- | message_count | | |
616- | last_used_model | | |
617- | last_used_provider | | |
612+ | conversation_id | string | Conversation ID (UUID) |
613+ | created_at | | When the conversation was created |
614+ | last_message_at | | When the last message was sent |
615+ | message_count | | Number of user messages in the conversation |
616+ | last_used_model | | Identification of the last model used for the conversation |
617+ | last_used_provider | | Identification of the last provider used for the conversation |
618618
619619
620620## ConversationResponse
Original file line number Diff line number Diff line change @@ -483,7 +483,7 @@ class ConversationDetails(BaseModel):
483483 """
484484
485485 conversation_id : str = Field (
486- "" ,
486+ ... ,
487487 description = "Conversation ID (UUID)" ,
488488 examples = ["c5260aec-4d82-4370-9fdf-05cf908b3f16" ],
489489 )
You can’t perform that action at this time.
0 commit comments