professionally since a long time • Worked for companies in all continents (except Antartica and South America) • Pymug organizing member compileralchemy.com
time import random def get_brainwave_value(): """Simulate getting a brainwave focus value from the NeuroSky headset.""" return random.randint(0, 100) def move_drone_up(): print("Drone moving up") def move_drone_down(): print("Drone moving down")
{ "name": "get_brainwave_value", "description": "Get the current brainwave focus value.", "parameters": {} }, { "name": "move_drone_up", "description": "Move the drone up on high focus.", "parameters": {} }, { "name": "move_drone_down", "description": "Move the drone down on low focus.", "parameters": {} } ]
"move_drone_up": move_drone_up() elif function_name == "move_drone_down": move_drone_down() time.sleep(1) if __name__ == "__main__": control_drone() Even the base version has enough meat
joke from the JokeAPI. This function sends a GET request to the JokeAPI to retrieve a random joke. It handles both single jokes and two-part jokes (setup and delivery). If the request fails or the response does not contain a joke, an error message is returned. Returns: str: The joke as a string, or an error message if the joke could not be fetched. """ url = "https://v2.jokeapi.dev/joke/Any?type=single"
"joke" in data: return data["joke"] elif "setup" in data and "delivery" in data: return f"{data['setup']} - {data['delivery']}" else: return "Error: Unable to fetch joke." except requests.exceptions.RequestException as e: return f"Error fetching joke: {str(e)}"
Models - ReWOO: ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models - LLM Compiler: An LLM Compiler for Parallel Function Calling