@salesforce/plugin-agent 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +122 -82
- package/lib/commands/agent/generate/{test-definition.d.ts → test-spec.d.ts} +1 -1
- package/lib/commands/agent/generate/{test-cases.js → test-spec.js} +50 -51
- package/lib/commands/agent/generate/test-spec.js.map +1 -0
- package/lib/commands/agent/test/create.d.ts +23 -0
- package/lib/commands/agent/test/create.js +95 -0
- package/lib/commands/agent/test/create.js.map +1 -0
- package/messages/agent.create-v2.md +17 -11
- package/messages/agent.generate.spec-v2.md +21 -13
- package/messages/agent.generate.test-spec.md +11 -0
- package/messages/agent.test.create.md +27 -0
- package/npm-shrinkwrap.json +210 -207
- package/oclif.lock +44 -17
- package/oclif.manifest.json +118 -69
- package/package.json +8 -4
- package/schemas/agent-test-create.json +19 -0
- package/schemas/agent-test-results.json +14 -17
- package/lib/commands/agent/generate/test-cases.d.ts +0 -16
- package/lib/commands/agent/generate/test-cases.js.map +0 -1
- package/lib/commands/agent/generate/test-definition.js +0 -76
- package/lib/commands/agent/generate/test-definition.js.map +0 -1
- package/messages/agent.generate.test-cases.md +0 -11
- package/messages/agent.generate.test-definition.md +0 -13
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2024, salesforce.com, inc.
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* Licensed under the BSD 3-Clause license.
|
|
5
|
+
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
6
|
+
*/
|
|
7
|
+
import { join } from 'node:path';
|
|
8
|
+
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
|
|
9
|
+
import { Lifecycle, Messages } from '@salesforce/core';
|
|
10
|
+
import { AgentTester, AgentTestCreateLifecycleStages } from '@salesforce/agents';
|
|
11
|
+
import { MultiStageOutput } from '@oclif/multi-stage-output';
|
|
12
|
+
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
|
|
13
|
+
const messages = Messages.loadMessages('@salesforce/plugin-agent', 'agent.test.create');
|
|
14
|
+
export default class AgentTestCreate extends SfCommand {
|
|
15
|
+
static summary = messages.getMessage('summary');
|
|
16
|
+
static description = messages.getMessage('description');
|
|
17
|
+
static examples = messages.getMessages('examples');
|
|
18
|
+
static state = 'beta';
|
|
19
|
+
static flags = {
|
|
20
|
+
spec: Flags.file({
|
|
21
|
+
summary: messages.getMessage('flags.spec.summary'),
|
|
22
|
+
description: messages.getMessage('flags.spec.description'),
|
|
23
|
+
char: 's',
|
|
24
|
+
required: true,
|
|
25
|
+
exists: true,
|
|
26
|
+
}),
|
|
27
|
+
'target-org': Flags.requiredOrg(),
|
|
28
|
+
'api-version': Flags.orgApiVersion(),
|
|
29
|
+
preview: Flags.boolean({
|
|
30
|
+
summary: messages.getMessage('flags.preview.summary'),
|
|
31
|
+
}),
|
|
32
|
+
'no-prompt': Flags.boolean({
|
|
33
|
+
summary: messages.getMessage('flags.no-prompt.summary'),
|
|
34
|
+
char: 'p',
|
|
35
|
+
}),
|
|
36
|
+
};
|
|
37
|
+
mso;
|
|
38
|
+
async run() {
|
|
39
|
+
const { flags } = await this.parse(AgentTestCreate);
|
|
40
|
+
const agentTester = new AgentTester(flags['target-org'].getConnection(flags['api-version']));
|
|
41
|
+
const lifecycle = Lifecycle.getInstance();
|
|
42
|
+
lifecycle.on(AgentTestCreateLifecycleStages.CreatingLocalMetadata, async () => {
|
|
43
|
+
this.mso = new MultiStageOutput({
|
|
44
|
+
jsonEnabled: this.jsonEnabled(),
|
|
45
|
+
stages: Object.values(AgentTestCreateLifecycleStages),
|
|
46
|
+
title: `Creating test for ${flags.spec}`,
|
|
47
|
+
});
|
|
48
|
+
this.mso?.skipTo(AgentTestCreateLifecycleStages.CreatingLocalMetadata);
|
|
49
|
+
return Promise.resolve();
|
|
50
|
+
});
|
|
51
|
+
lifecycle.on(AgentTestCreateLifecycleStages.DeployingMetadata, async () => Promise.resolve(this.mso?.skipTo(AgentTestCreateLifecycleStages.DeployingMetadata)));
|
|
52
|
+
lifecycle.on(AgentTestCreateLifecycleStages.Waiting, async () => Promise.resolve(this.mso?.skipTo(AgentTestCreateLifecycleStages.Waiting)));
|
|
53
|
+
lifecycle.on(AgentTestCreateLifecycleStages.Done, async (result) => {
|
|
54
|
+
if (result.response.success) {
|
|
55
|
+
this.mso?.skipTo(AgentTestCreateLifecycleStages.Done);
|
|
56
|
+
this.mso?.stop();
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
this.mso?.error();
|
|
60
|
+
this.mso?.stop();
|
|
61
|
+
}
|
|
62
|
+
return Promise.resolve();
|
|
63
|
+
});
|
|
64
|
+
const confirmationCallback = flags['no-prompt']
|
|
65
|
+
? async () => Promise.resolve(true)
|
|
66
|
+
: async (spec) => this.confirm({
|
|
67
|
+
message: `An AiEvaluationDefinition with the name ${spec.name} already exists in the org. Do you want to overwrite it?`,
|
|
68
|
+
defaultAnswer: false,
|
|
69
|
+
});
|
|
70
|
+
const { path, contents } = await agentTester.create(flags.spec, {
|
|
71
|
+
outputDir: join('force-app', 'main', 'default', 'aiEvaluationDefinitions'),
|
|
72
|
+
preview: flags.preview,
|
|
73
|
+
confirmationCallback,
|
|
74
|
+
});
|
|
75
|
+
if (flags.preview) {
|
|
76
|
+
this.mso?.skipTo(AgentTestCreateLifecycleStages.Done);
|
|
77
|
+
this.mso?.stop();
|
|
78
|
+
this.log(`Preview of AiEvaluationDefinition created at ${path}`);
|
|
79
|
+
this.log();
|
|
80
|
+
this.log(contents);
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
this.log(`AiEvaluationDefinition created at ${path} and deployed to ${flags['target-org'].getUsername() ?? flags['target-org'].getOrgId()}`);
|
|
84
|
+
}
|
|
85
|
+
return {
|
|
86
|
+
path,
|
|
87
|
+
contents,
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
catch(error) {
|
|
91
|
+
this.mso?.error();
|
|
92
|
+
return super.catch(error);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
//# sourceMappingURL=create.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../../src/commands/agent/test/create.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
Create an agent in your org
|
|
3
|
+
Create an agent in your org using a local agent spec file.
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Before you run this command, you must first generate an agent spec file by running the "agent generate spec" CLI command, which outputs a YAML file with the agent properties and list of AI-generated topics. Topics define the range of jobs the agent can handle. Then specify the generated agent spec file to this command using the --spec flag, along with the name (label) of the new agent using the --agent-name flag.
|
|
8
8
|
|
|
9
|
-
When this command finishes, your org contains the new agent, which you can then edit in the Agent Builder UI. The new agent
|
|
9
|
+
When this command finishes, your org contains the new agent, which you can then edit in the Agent Builder UI. The new agent's topics are the same as the ones listed in the agent spec file. The agent might also have some AI-generated actions. This command also retrieves all the metadata files associated with the new agent to your local Salesforce DX project.
|
|
10
|
+
|
|
11
|
+
Use the --preview flag to review what the agent looks like without actually saving it in your org. Rather, the command creates a JSON file with all the agent details in the current directory.
|
|
10
12
|
|
|
11
13
|
To open the new agent in your org's Agent Builder UI, run this command: "sf org open agent --name <api-name-of-your-agent>".
|
|
12
14
|
|
|
@@ -16,27 +18,27 @@ Path to an agent spec file.
|
|
|
16
18
|
|
|
17
19
|
# flags.preview.summary
|
|
18
20
|
|
|
19
|
-
Preview the agent without saving in your org.
|
|
21
|
+
Preview the agent without saving it in your org.
|
|
20
22
|
|
|
21
23
|
# flags.agent-name.summary
|
|
22
24
|
|
|
23
|
-
Name
|
|
25
|
+
Name (label) of the new agent.
|
|
24
26
|
|
|
25
27
|
# flags.agent-api-name.summary
|
|
26
28
|
|
|
27
|
-
API name
|
|
29
|
+
API name of the new agent; if not specified, the API name is derived from the agent name (label); the API name must not exist in the org.
|
|
28
30
|
|
|
29
31
|
# flags.user-id.summary
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
ID of a user in your org that is assigned to your agent; determines what your agent can access and do.
|
|
32
34
|
|
|
33
35
|
# flags.enrich-logs.summary
|
|
34
36
|
|
|
35
|
-
Adds agent conversation data to event logs.
|
|
37
|
+
Adds agent conversation data to event logs so you can view all agent session activity in one place.
|
|
36
38
|
|
|
37
39
|
# flags.tone.summary
|
|
38
40
|
|
|
39
|
-
Conversational style of agent
|
|
41
|
+
Conversational style of the agent, such as how it expresses your brand personality in its messages through word choice, punctuation, and sentence structure.
|
|
40
42
|
|
|
41
43
|
# flags.primary-language.summary
|
|
42
44
|
|
|
@@ -52,6 +54,10 @@ Missing required flags: %s
|
|
|
52
54
|
|
|
53
55
|
# examples
|
|
54
56
|
|
|
55
|
-
- Create an agent called "
|
|
57
|
+
- Create an agent called "ResortManager" in an org with alias "my-org" using the specified agent spec file:
|
|
58
|
+
|
|
59
|
+
<%= config.bin %> <%= command.id %> --agent-name ResortManager --spec specs/resortManagerAgent.yaml --target-org my-org
|
|
60
|
+
|
|
61
|
+
- Preview the creation of an agent called "ResortManager" and use your default org:
|
|
56
62
|
|
|
57
|
-
<%= config.bin %> <%= command.id %> --name
|
|
63
|
+
<%= config.bin %> <%= command.id %> --agent-name ResortManager --spec specs/resortManagerAgent.yaml --preview
|
|
@@ -1,44 +1,52 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
Generate an agent spec, which is
|
|
3
|
+
Generate an agent spec, which is a YAML file that captures what an agent can do.
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Before you use Salesforce CLI to create an agent in your org, you must first generate an agent spec with this command. An agent spec is a YAML-formatted file that contains information about the agent, such as its role and company description, and then an AI-generated list of topics based on this information. Topics define the range of jobs your agent can handle.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Use flags, such as --role and --company-description, to provide details about your company and the role that the agent plays in your company. If you prefer, you can also be prompted for the information. Upon command execution, the large language model (LLM) associated with your org uses the information you provided to generate a list of topics for the agent. Because the LLM uses the company and role information to generate the topics, we recommend that you provide accurate and specific details so the LLM generates the best and most relevant topics. Once generated, you can edit the spec file; for example, you can remove topics that don't apply to your agent or change the description of a particular topic.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
You can iterate the spec generation process by using the --spec flag to pass an existing agent spec file to this command, and then using the --role, --company-description, etc, flags to refine your agent properties. Iteratively improving the description of your agent allows the LLM to generate progressively better topics.
|
|
12
|
+
|
|
13
|
+
You can also specify a custom prompt template that the agent uses, and ground the prompt template to add context and personalization to the agent's prompts.
|
|
14
|
+
|
|
15
|
+
When your agent spec is ready, you then create the agent in your org by running the "agent create" CLI command and specifying the spec with the --spec flag.
|
|
12
16
|
|
|
13
17
|
# flags.output-file.summary
|
|
14
18
|
|
|
15
|
-
Path for the generated agent spec file
|
|
19
|
+
Path for the generated YAML agent spec file; can be an absolute or relative path.
|
|
16
20
|
|
|
17
21
|
# flags.max-topics.summary
|
|
18
22
|
|
|
19
|
-
Maximum number of
|
|
23
|
+
Maximum number of topics to generate in the agent spec; default is 10.
|
|
20
24
|
|
|
21
25
|
# flags.prompt-template.summary
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
API name of a customized prompt template to use instead of the default prompt template.
|
|
24
28
|
|
|
25
29
|
# flags.grounding-context.summary
|
|
26
30
|
|
|
27
|
-
Context information to
|
|
31
|
+
Context information and personalization that's added to your prompts when using a custom prompt template.
|
|
28
32
|
|
|
29
33
|
# flags.spec.summary
|
|
30
34
|
|
|
31
|
-
|
|
35
|
+
Agent spec file, in YAML format, to use as input to the command.
|
|
32
36
|
|
|
33
37
|
# examples
|
|
34
38
|
|
|
35
|
-
-
|
|
39
|
+
- Generate an agent spec in the default location and use flags to specify the agent properties, such as its role and your company details; use your default org:
|
|
40
|
+
|
|
41
|
+
<%= config.bin %> <%= command.id %> --type customer --role "Field customer complaints and manage employee schedules." --company-name "Coral Cloud Resorts" --company-description "Provide customers with exceptional destination activities, unforgettable experiences, and reservation services."
|
|
42
|
+
|
|
43
|
+
- Generate an agent spec by being prompted for the required agent properties and generate a maxiumum of 5 topics; write the generated file to the "specs/resortManagerSpec.yaml" file and use the org with alias "my-org":
|
|
36
44
|
|
|
37
|
-
<%= config.bin %> <%= command.id %> --
|
|
45
|
+
<%= config.bin %> <%= command.id %> --max-topics 5 --output-file specs/resortManagerAgent.yaml --target-org my-org
|
|
38
46
|
|
|
39
|
-
-
|
|
47
|
+
- Specify an existing agent spec file called "specs/resortManagerAgent.yaml", and then overwrite it with a new version that contains newly AI-generated topics based on the updated role information passed in with the --role flag:
|
|
40
48
|
|
|
41
|
-
<%= config.bin %> <%= command.id %> --output-
|
|
49
|
+
<%= config.bin %> <%= command.id %> --spec specs/resortManagerAgent.yaml --output-file specs/resortManagerAgent.yaml --role "Field customer complaints, manage employee schedules, and ensure all resort operations are running smoothly" --target-org my-org
|
|
42
50
|
|
|
43
51
|
# error.missingRequiredFlags
|
|
44
52
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# summary
|
|
2
|
+
|
|
3
|
+
Interactively generate a specification file for a AI evaluation test.
|
|
4
|
+
|
|
5
|
+
# description
|
|
6
|
+
|
|
7
|
+
This command will prompt you for the necessary information to create a new spec file (in yaml format). You can then create a new AI evaluation using "sf agent test create --spec <spec-file>".
|
|
8
|
+
|
|
9
|
+
# examples
|
|
10
|
+
|
|
11
|
+
- <%= config.bin %> <%= command.id %>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# summary
|
|
2
|
+
|
|
3
|
+
Summary of a command.
|
|
4
|
+
|
|
5
|
+
# description
|
|
6
|
+
|
|
7
|
+
More information about a command. Don't repeat the summary.
|
|
8
|
+
|
|
9
|
+
# flags.spec.summary
|
|
10
|
+
|
|
11
|
+
Description of a flag.
|
|
12
|
+
|
|
13
|
+
# flags.spec.description
|
|
14
|
+
|
|
15
|
+
More information about a flag. Don't repeat the summary.
|
|
16
|
+
|
|
17
|
+
# flags.preview.summary
|
|
18
|
+
|
|
19
|
+
Preview the test metadata without deploying to your org.
|
|
20
|
+
|
|
21
|
+
# flags.no-prompt.summary
|
|
22
|
+
|
|
23
|
+
Don't prompt for confirmation when overwriting an existing test.
|
|
24
|
+
|
|
25
|
+
# examples
|
|
26
|
+
|
|
27
|
+
- <%= config.bin %> <%= command.id %>
|