mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
Fix input interpolation bug (#369)
This commit is contained in:
@@ -680,3 +680,21 @@ def test_agent_definition_based_on_dict():
|
||||
assert agent.backstory == "test backstory"
|
||||
assert agent.verbose == True
|
||||
assert agent.tools == []
|
||||
|
||||
|
||||
def test_interpolate_inputs():
|
||||
agent = Agent(
|
||||
role="{topic} specialist",
|
||||
goal="Figure {goal} out",
|
||||
backstory="I am the master of {role}",
|
||||
)
|
||||
|
||||
agent.interpolate_inputs({"topic": "AI", "goal": "life", "role": "all things"})
|
||||
assert agent.role == "AI specialist"
|
||||
assert agent.goal == "Figure life out"
|
||||
assert agent.backstory == "I am the master of all things"
|
||||
|
||||
agent.interpolate_inputs({"topic": "Sales", "goal": "stuff", "role": "nothing"})
|
||||
assert agent.role == "Sales specialist"
|
||||
assert agent.goal == "Figure stuff out"
|
||||
assert agent.backstory == "I am the master of nothing"
|
||||
|
||||
Reference in New Issue
Block a user