File size: 1,608 Bytes
0af0a55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from typing import Dict, Any, List
from loguru import logger
from utils.llm_orchestrator import LLMOrchestrator


class ErrorFixingAgent:
    def __init__(self, llm_api_key: str):
        """Initialize the Error Fixing Agent."""
        logger.info("Initializing ErrorFixingAgent")
        self.llm_orchestrator = LLMOrchestrator(llm_api_key)
        self.capabilities = [
            "error_fixing",
            "patch_generation",
            "code_repair"
        ]
        self.setup_logger()

    def setup_logger(self):
        """Configure logging for the agent."""
        logger.add("logs/error_fixing_agent.log", rotation="500 MB")

    async def fix_errors(
            self, code: str, error_messages: List[str]) -> Dict[str, Any]:
        """Generate code patches to fix detected errors."""
        logger.info(f"Attempting to fix errors: {error_messages}")
        try:
            prompt = f"""
            Fix the following errors in the code:
            {code}

            Errors:
            {chr(10).join(error_messages)}

            Provide only the corrected code, without any introductory or explanatory text.
            """
            fixed_code = await self.llm_orchestrator.generate_completion(prompt)

            logger.info(f"Code with fixes generated:\n{fixed_code}")
            return {
                "status": "success",
                "fixed_code": fixed_code
            }

        except Exception as e:
            logger.error(f"Error fixing code: {str(e)}")
            return {
                "status": "error",
                "message": str(e)
            }