1from nbias import execute
2project_id: str = "91392237-fc87-48b4-b83c-59c6ce0aad9d"
3
4api_key: str = "xxx-4ad62b20-74ab-4f55-a5df-856007db6261"
5
6inputs = [{"id": "TextInputNode-dU-gccjt6igEbAVFnYs4x",
7 "data": {"text": "Hello!"}}]
8output = execute(project_id, api_key, inputs)
9
10print(output.json())
11