Paul Janzen
10/26/2024, 5:51 AMfrom prefect import flow, get_client
@flow
async def my_flow():
client = get_client()
client.api_url = "<http://target-prefect-server:4200/api>"
print(f"API URL set to: {client.api_url}")
# You can now make client calls or run your flow tasks