xef icon indicating copy to clipboard operation
xef copied to clipboard

Tracing conversations in Server

Open Montagon opened this issue 2 years ago • 0 comments

  • [ ] Update DB table to store the different conversations for each user.
    • UserID
    • ConversationId
    • Number of prompts made for a conversation
    • CreatedAt
    • UpdatedAt
  • [ ] Endpoints for management
    • GET /v1/conversations/ -> Returns all conversations. Should be paginated and will return the conversationId, number of prompts, created at and updated at.
    • GET /v1/conversations/{id} -> Return the information taken from memory. Paginated?
    • DELETE /v1/conversations/{id}

Montagon avatar Sep 26 '23 08:09 Montagon