importlogginglogger=logging.getLogger(__name__)fromagenticaiframework.processesimportProcess# Example: Using the Process class# ---------------------------------# This example demonstrates how to:# 1. Create a Process with a specific strategy# 2. Add steps to the process# 3. Execute the process## Expected Output:# - Logs showing the execution of each step in sequenceif__name__=="__main__":# Create a processprocess=Process(name="ExampleProcess",strategy="sequential")# Define some example stepsdefstep_one():logger.info("Step One executed.")defstep_two():logger.info("Step Two executed.")# Add steps to the processprocess.add_step(step_one)process.add_step(step_two)# Execute the processprocess.execute()