Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update core service enums #414

Merged
merged 2 commits into from
Oct 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,16 @@ export enum DataService {
* Gets a list of messages for an existing conversation from the server.
*/
GetConversationMessages = "getConversationMessages",

/**
* Gets a conversation matching an ID on the server.
*/
GetConversationById = "getConversationById",

/**
* Creates a new conversation using the prompt instruction.
*/
CreateBot = "createBot",
}

/**
Expand Down Expand Up @@ -179,6 +189,11 @@ export enum PreferenceService {
* The experiment component for which preferences are being managed.
*/
ExperimentComponent = "experimentComponent",

/**
* Gets the plugin preferences.
*/
PluginPreferences = "pluginPreferences",
}

/**
Expand Down