You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
orquestrador/app/services/orchestrator_service.py

11 lines
339 B
Python

class OrchestratorService:
async def handle_message(self, message: str, user_id: str) -> str:
# Aqui futuramente:
# - chamada ao Gemini
# - verificação de intenção
# - chamada de tools
# - integração com banco
return f"Mensagem recebida do usuário {user_id}: {message}"