From b0b25439c5b6e4820a467dab986a2a97d210f211 Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Wed, 22 May 2024 16:47:01 -0400 Subject: [PATCH] [CLEANUP] --- playground/demos/agentic_space_traffic_control/flight_data.py | 1 - .../demos/agentic_space_traffic_control/game.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) rename game.py => playground/demos/agentic_space_traffic_control/game.py (94%) diff --git a/playground/demos/agentic_space_traffic_control/flight_data.py b/playground/demos/agentic_space_traffic_control/flight_data.py index 3e6a8f19..dd41ff4f 100644 --- a/playground/demos/agentic_space_traffic_control/flight_data.py +++ b/playground/demos/agentic_space_traffic_control/flight_data.py @@ -1,6 +1,5 @@ import requests from typing import List, Dict, Any -from swarms.tools import get_openai_function_schema_from_func def fetch_flights_in_area( diff --git a/game.py b/playground/demos/agentic_space_traffic_control/game.py similarity index 94% rename from game.py rename to playground/demos/agentic_space_traffic_control/game.py index 31717a29..aa927f58 100644 --- a/game.py +++ b/playground/demos/agentic_space_traffic_control/game.py @@ -69,4 +69,6 @@ flow = AgentRearrange( max_loops=3, ) # Run the flow -flow.run("We're preparing for a launch in Cape canveral, let's begin the launch process, whats the weather like?") \ No newline at end of file +flow.run( + "We're preparing for a launch in Cape canveral, let's begin the launch process, whats the weather like?" +)