AI-powered support
Ask me anything about SettleGrid
Integrate Code Reviewer Pro into your AutoGen agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
AI-powered code review with security analysis, style enforcement, and vulnerability detection
AutoGen is Microsoft's framework for building multi-agent conversational systems. Agents can use tools registered as Python functions.
pip install pyautogenPurchase credits for Code Reviewer Pro, then generate an API key from your Consumer Dashboard.
import autogen
import requests
# Define the tool function
def call_code_reviewer_pro(query: str) -> str:
"""Call CodeReviewerPro via SettleGrid.
Args:
query: Input to send to the tool.
Returns:
The tool response as a string.
"""
resp = requests.post(
"https://proxy.settlegrid.ai/v1/code_reviewer_pro",
headers={
"x-api-key": "sg_live_your_key_here",
"Content-Type": "application/json",
},
json={"query": query},
)
resp.raise_for_status()
return str(resp.json())
# Set up agents
assistant = autogen.AssistantAgent("assistant", llm_config=llm_config)
user_proxy = autogen.UserProxyAgent(
"user_proxy",
human_input_mode="NEVER",
code_execution_config=False,
)
# Register the tool
assistant.register_for_llm(
name="code_reviewer_pro",
description="CodeReviewerPro — call via SettleGrid",
)(call_code_reviewer_pro)
user_proxy.register_for_execution(name="code_reviewer_pro")(call_code_reviewer_pro)
user_proxy.initiate_chat(assistant, message="Use CodeReviewerPro for this task")Execute your AutoGen agent. SettleGrid automatically meters each call to Code Reviewer Pro and deducts from your credit balance. No rate limits beyond your purchased credits.
No subscriptions or minimums. Credits never expire. See full pricing details.
Purchase credits and start using Code Reviewer Pro in your AutoGen agent today.
View Code Reviewer Pro →Use Code Reviewer Pro with other agent frameworks: