async fn send_message(
    pool: Data<PgPool>,
    params: Path<(Uuid, Uuid)>,
    user: AuthUser,
    app_conf: Data<ApplicationConfiguration>,
    payload: Json<String>,
) -> ControllerResult<HttpResponse>
Expand description

POST /api/v0/course-material/chatbot/:chatbot_configuration_id/conversations/:conversation_id/send-message

Sends a new chat message to the chatbot.