import React from 'react'; /** * Advanced Settings section of the agent form */ const AdvancedSettingsSection = ({ formData, handleInputChange }) => { return (

Advanced Settings

Maximum number of steps the agent can take
Maximum number of iterations for each step
Allow the agent to operate autonomously
Enable detailed logging
Allow the agent to execute code (use with caution)
); }; export default AdvancedSettingsSection;