22 lines
597 B
Gherkin
22 lines
597 B
Gherkin
Feature: Template Configuration Management
|
|
As a CleverAgents user
|
|
I want to define and use template configurations
|
|
So that I can create reusable agent and workflow patterns
|
|
|
|
Background:
|
|
Given the CleverAgents application is initialized
|
|
|
|
Scenario: Load configuration with templates
|
|
Given I have a configuration file with templates:
|
|
"""
|
|
templates:
|
|
agents:
|
|
basic_agent:
|
|
type: llm
|
|
config:
|
|
model: gpt-4
|
|
"""
|
|
When I load the template configuration
|
|
Then the configuration should contain 1 agent template
|
|
|