Show a progress circle when running an API

Hi bubblers,
I want to show a progress circle like the image below while waiting for an API to run
, it will start from 0% and start running until it reaches 100%.
Is it possible?
The workflow is something like this:
Click an button → Show progress circle running to 99% → Run API → Progress circle running to 100%
image

Hi there,

If you are creating or modifying a list of things with your workflow, you could generate a random string of characters and include that on a field on the data. Your interface would do a search for this datatype where random string = this randomly generated number:count. You then divide this by the total number of things you’re expectong to create. For example, if you’re creating 12 things,
and 4 have been created, the count will be 4, divided by 12, = .33, or 33%. You’d have to find an element to represent this via a circle like I’m your example, but that shouldn’t be too hard.

1 Like

Unfortunately, my API is not to create or modify things, I’m using OpenAPI to run a prompt and get an answer from it

1 Like

You may instead want to look into UX that indicates something is happening, with periodic jumps in percentage completed. More making the users think something is happening so they don’t click away, rather than a direct tracking of exactly whats left.

This topic was automatically closed after 70 days. New replies are no longer allowed.