에이전트 구축이 처음이라면 먼저 에이전트 소개와 smolagent에 대한 가이드 투어를 읽어보세요. 에이전트 코드 작성하기 여러 연구 논문에 따르면 LLM이 작업(도구 호출)을 코드로 작성하는 것이 현재 표준 형식인 도구 호출보다 훨씬 더 나은 것으로 나타났는데, 이는 업계 전반에서 '작업 작성'에 대한 다양한 음영이 존재합니다.
In this tutorial, we’ll see how to implement an agent that leverages SQL using smolagents. Let’s start with the golden question: why not keep it simple and use a standard text-to-SQL pipeline? A standard text-to-sql pipeline is brittle, since the generated SQL query can be incorrect. Even worse, the query could be incorrect, but not raise...