Spaces:
Runtime error
Runtime error
File size: 281 Bytes
0af0a55 |
1 2 3 4 5 6 7 8 9 10 11 |
from agents.code_analysis_agent import CodeAnalysisAgent
import asyncio
import json
async def main():
analyzer = CodeAnalysisAgent()
report = await analyzer.analyze_repository('.')
print(json.dumps(report, indent=4))
if __name__ == "__main__":
asyncio.run(main()) |