File size: 2,983 Bytes
4e9b744
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
51
52
53
54
55
56
57
58
59
60
61
62
63
import logging
from langchain_core.tools import tool
from src.services.analysis_service import AnalysisService
import json
import os
from datetime import datetime
from pydantic import BaseModel, Field
from typing import List, Dict, Any, Optional
import httpx

logger = logging.getLogger(__name__)

BACKEND_API_URL = os.getenv("BACKEND_API_URL", "http://localhost:8000")

class InterviewAnalysisArgs(BaseModel):
    """Arguments for the trigger_interview_analysis tool."""
    user_id: str = Field(..., description="The unique identifier for the user.")
    job_offer_id: str = Field(..., description="The unique identifier for the job offer.")
    job_description: str = Field(..., description="The full JSON string of the job offer description.")
    conversation_history: List[Dict[str, Any]] = Field(..., description="The complete conversation history between the user and the agent.")
    cv_content: str = Field(..., description="The content of the candidate's CV (JSON string or text).")
    cheat_metrics: Optional[Dict[str, Any]] = Field(default=None, description="Metrics related to copy-paste behavior.")
    simulation_report: Optional[Dict[str, Any]] = Field(default=None, description="Pre-computed structured simulation report.")

@tool("trigger_interview_analysis", args_schema=InterviewAnalysisArgs)
def trigger_interview_analysis(user_id: str, job_offer_id: str, job_description: str, conversation_history: List[Dict[str, Any]], cv_content: str, cheat_metrics: Dict[str, Any] = None, simulation_report: Dict[str, Any] = None):
    """
    Call this tool to end the interview and launch the final analysis.
    Arguments: user_id, job_offer_id, job_description, conversation_history, cv_content.
    """
    try:
        logger.info(f"Tool 'trigger_interview_analysis' called for user_id: {user_id}")
        
        analysis_service = AnalysisService() 
        
        feedback_data = analysis_service.run_analysis(
            conversation_history=conversation_history,
            job_description=job_description,
            cv_content=cv_content,
            cheat_metrics=cheat_metrics,
            simulation_report=simulation_report
        )
        
        feedback_payload = {
            "user_id": user_id,
            "interview_id": job_offer_id, 
            "feedback_content": feedback_data,
            "feedback_date": datetime.utcnow().isoformat()
        }
        
        try:
            response = httpx.post(f"{BACKEND_API_URL}/api/v1/feedback/", json=feedback_payload, timeout=30.0)
            response.raise_for_status()
            logger.info("Feedback saved to Backend API successfully.")
        except Exception as api_err:
            logger.error(f"Failed to save feedback to API: {api_err}")
        
        return "Analysis triggered and completed successfully."

    except Exception as e:
        logger.error(f"Error in analysis tool: {e}", exc_info=True)
        return "An error occurred while launching the analysis."