diff --git a/examples/acp-base/external-evaluation/buyer.ts b/examples/acp-base/external-evaluation/buyer.ts index 69b1769..cf6701c 100644 --- a/examples/acp-base/external-evaluation/buyer.ts +++ b/examples/acp-base/external-evaluation/buyer.ts @@ -64,7 +64,12 @@ async function buyer() { const chosenJobOffering = chosenAgent.jobOfferings[0]; const jobId = await chosenJobOffering.initiateJob( - "Help me to generate a flower meme.", + // can be found in your ACP Visualiser's "Edit Service" pop-up. + // Reference: (./images/specify_requirement_toggle_switch.png) + { + "": "", + "": "", + }, EVALUATOR_AGENT_WALLET_ADDRESS, // evaluator address new Date(Date.now() + 1000 * 60 * 3.1) // job expiry duration, minimum 3 minutes ); diff --git a/examples/acp-base/funds/prediction-market/buyer.ts b/examples/acp-base/funds/prediction-market/buyer.ts index a4ccddd..0015cd7 100644 --- a/examples/acp-base/funds/prediction-market/buyer.ts +++ b/examples/acp-base/funds/prediction-market/buyer.ts @@ -34,6 +34,8 @@ const question = (prompt: string): Promise => { }); }; +// can be found in your ACP Visualiser's "Edit Service" pop-up. +// Reference: (./images/specify_requirement_toggle_switch.png) const SERVICE_REQUIREMENTS_JOB_TYPE_MAPPING: Record = { create_market: { question: "Will ETH close above $3000 on Dec 31, 2025?", diff --git a/examples/acp-base/funds/trading/buyer.ts b/examples/acp-base/funds/trading/buyer.ts index 331bbcc..95e0073 100644 --- a/examples/acp-base/funds/trading/buyer.ts +++ b/examples/acp-base/funds/trading/buyer.ts @@ -34,6 +34,8 @@ const question = (prompt: string): Promise => { }); }; +// can be found in your ACP Visualiser's "Edit Service" pop-up. +// Reference: (./images/specify_requirement_toggle_switch.png) const SERVICE_REQUIREMENTS_JOB_TYPE_MAPPING: Record = { swap_token: { fromSymbol: "USDC", diff --git a/examples/acp-base/polling-mode/buyer.ts b/examples/acp-base/polling-mode/buyer.ts index d34723b..bdab4a6 100644 --- a/examples/acp-base/polling-mode/buyer.ts +++ b/examples/acp-base/polling-mode/buyer.ts @@ -56,6 +56,8 @@ async function buyer() { ); const jobId = await chosenJobOffering.initiateJob( + // can be found in your ACP Visualiser's "Edit Service" pop-up. + // Reference: (./images/specify_requirement_toggle_switch.png) { "": "", "": "", diff --git a/examples/acp-base/skip-evaluation/buyer.ts b/examples/acp-base/skip-evaluation/buyer.ts index b631944..0d59174 100644 --- a/examples/acp-base/skip-evaluation/buyer.ts +++ b/examples/acp-base/skip-evaluation/buyer.ts @@ -65,6 +65,8 @@ async function buyer() { const chosenJobOffering = chosenAgent.jobOfferings[0]; const jobId = await chosenJobOffering.initiateJob( + // can be found in your ACP Visualiser's "Edit Service" pop-up. + // Reference: (./images/specify_requirement_toggle_switch.png) { "": "", "": "",