Unser empfohlenes Coding-Template für Agents und ihre Tools.
### Agent Template Folder Structure
/your-specified-path/ # Your Agent Fabric, where all agents are located
│
└── AgentName/ # Directory for the specific agent
├── files/ # Directory for files that will be uploaded to OpenAI
├── schemas/ # Directory for OpenAPI schemas to be converted into tools
├── tools/ # Directory for tools to be imported by default
├── AgentName.py # The main agent class file – use CamelCase for agents’ name
├── __init__.py # Initializes the agent folder as a Python package
├── instructions.md or .txt # Instruction document for the agent
└── requirements.txt # Requirements to be installed for the agent - if any