Skip to content

Commit

Permalink
chore: mark commands as beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Dec 12, 2024
1 parent 580919d commit 818202c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/commands/agent/generate/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default class AgentGenerateDefinition extends SfCommand<void> {
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly enableJsonFlag = false;
public static readonly state = 'beta';

public async run(): Promise<void> {
const testSetDir = join('force-app', 'main', 'default', 'aiEvaluationTestSets');
Expand Down
1 change: 1 addition & 0 deletions src/commands/agent/generate/testset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export default class AgentGenerateTestset extends SfCommand<void> {
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly enableJsonFlag = false;
public static readonly state = 'beta';

public async run(): Promise<void> {
const testSetName = await input({
Expand Down

0 comments on commit 818202c

Please sign in to comment.