Skip to content

Commit

Permalink
docs: add base context for item
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Nov 24, 2023
1 parent b381b0c commit 602d373
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/types/custom-action.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ export enum OutputForm {
NOTIFICATION = 4,
}

export enum VariableType {
BEFORE_CURSOR,
AFTER_CURSOR,
SELECTION,
ALL,
SIMILAR_CHUNKS,
RELATED_CHUNKS,
export enum DefinedVariable {
TEMP_CONTEXT = "${{TEMP_CONTEXT}}",
BEFORE_CURSOR = "${{BEFORE_CURSOR}}",
AFTER_CURSOR = "${{AFTER_CURSOR}}",
SELECTION = "${{SELECTION}}",
ALL = "${{ALL}}",
SIMILAR_CHUNKS = "${{SIMILAR_CHUNKS}}",
RELATED_CHUNKS = "${{RELATED_CHUNKS}}",
}

export interface PromptAction {
Expand Down

0 comments on commit 602d373

Please sign in to comment.