forked from cleveragents/cleveragents-core
20 lines
784 B
Gherkin
20 lines
784 B
Gherkin
Feature: Chain Agent Functionality
|
|
As a developer
|
|
I want to test the ChainAgent
|
|
So that I can ensure it works correctly
|
|
|
|
Scenario: Chain agent processes messages through multiple steps
|
|
Given a chain agent with multiple processing steps
|
|
When I send a message to the chain agent
|
|
Then the message should be processed through all steps
|
|
|
|
Scenario: Chain agent with custom step implementation
|
|
Given a chain agent with custom step implementations
|
|
When I send a message requiring custom processing
|
|
Then the message should be processed using the custom implementations
|
|
|
|
Scenario: Chain agent capabilities
|
|
Given a chain agent with various capabilities
|
|
When I request the agent's capabilities
|
|
Then the capabilities should include chain-processing
|