Hi everyone!
I’m developing a multi-agent system and the first task involves parsing a user query to extract specific parameters.
The agent must create a structured json from original query and then pass it to another agent that will call the tool using these arguments.
{
“query”: “the original query”,
“metrics”: [“array”, “of”, “metrics”],
“start_date”: “YYYY-MM-DD”,
“end_date”: “YYYY-MM-DD”,
“analysis_type”: “simple_stats|trends|correlation”
}
So far all my effort fail. Would appreciate your help/advice on this matter.
Thanks!