NVIDIA의 NOOA는 Python 클래스로 에이전트를 정의할 수 있는 프레임워크입니다.
NVIDIA의 OO Agents (NOOA)는 에이전트의 상태, 기능, 프롬프트 및 입출력 규칙을 하나의 Python 클래스 안에서 정의할 수 있는 모델 독립적 프레임워크입니다. 이 프레임워크에서는 클래스의 필드가 상태를, 메서드가 기능을, 독스트링이 프롬프트를, 타입 어노테이션이 입출력 계약 역할을 하게 됩니다. 또한 일반적인 Python 코드를 포함한 메서드는 그대로 실행될 수 있습니다.
NVIDIA's NOOA is a framework for defining agents using Python classes.
NVIDIA's OO Agents (NOOA) is a model-independent framework that allows defining an agent's state, functionality, prompt, and input/output rules within a single Python class. In this framework, class fields represent the state, methods represent the functionality, docstrings serve as prompts, and type annotations act as input/output contracts. Additionally, methods containing regular Python code can be executed as they are.