ShallowCodeResearch_agent_code_generator
Generate Python code based on user requests and context using an AI-powered agent. Part of the MCP Hub server's advanced research workflow.
Instructions
Wrapper for CodeGeneratorAgent to generate Python code. Returns: A tuple containing the generation result and raw code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
grounded_context | No | Context information to guide generation | |
user_request | No | The user's request for code generation |
Input Schema (JSON Schema)
{
"properties": {
"grounded_context": {
"description": "Context information to guide generation",
"type": "string"
},
"user_request": {
"description": "The user's request for code generation",
"type": "string"
}
},
"type": "object"
}