Show HN: Debug your AI application in web browser
1 points
by yol
1 hour ago
| 0 comments
| github.com
| HN
Hi HN,

I'm Bryan. I built an open-source project for debugging your AI applications interactively through a web UI with just a few lines of setup. You can require user input mid-execution, pause/resume, and look at traces in real time.

Here's a demo of how debugging looks like: https://www.loom.com/share/6d419cfe20884b3994121697377b2a7e

Here's how to setup:

1.register the entry point function with decorator:

``` @pixie.app async def my_app(): ... ```

2. request input from web UI in your code with yield:

``` async def mp_app(): ... user_input = yield InputRequired(dict[str, int]) ... ```

Would this save you time? Would love to hear your thoughts!

No one has commented on this post.