Files
Qt_DesktopPet/src/assistant/UserIntent.h
T

21 lines
276 B
C

#pragma once
#include <QString>
enum class UserIntentType
{
Chat,
Reminder,
Weather,
FileOperation,
LaunchApp,
};
struct UserIntent
{
UserIntentType type = UserIntentType::Chat;
QString text;
};
QString userIntentTypeName(UserIntentType type);