def _use_or_create_conversation_id()

in orchestration/orchestrator.py [0:0]


    def _use_or_create_conversation_id(self, conversation_id: str) -> str:
        if not conversation_id:
            conversation_id = str(uuid.uuid4())
            logging.info(f"[orchestrator] Creating new conversation_id: {conversation_id}")
        return conversation_id