I have a great idea and a question:
How to quickly prety print or save to txt the gradio space api? Manually iterate over endpoints and arguments?
Idea:
What if we make a macro that generates code and functions to use with some api? e.g.
let Client = client::new_sync(params);
let endpoint = client.generate_endpoint!();
endpoint.transcribe(text, param1, param2);
I have a great idea and a question:
How to quickly prety print or save to txt the gradio space api? Manually iterate over endpoints and arguments?
Idea:
What if we make a macro that generates code and functions to use with some api? e.g.
let Client = client::new_sync(params);
let endpoint = client.generate_endpoint!();
endpoint.transcribe(text, param1, param2);