Stabldev

Results 19 comments of Stabldev

> Lets see what framework [this site](https://forums.mihoyo.com/) uses LOL its Sprint booooot okay? whats the big deal

Hi @Drac1652, yea sadly you cant watch anything yet. we're working on enhancing the UI, so it might take some more time to finish things up. we will host this...

hi, i had similar case, navigation event is fired but never resolved. tried `await goto('?type=profile-select')` (with await) and it worked, worth giving it a try if is anyone having this...

Hi, any update on this?

@ziimakc this is what im currently doing. set this in .zed/settings.json: ```json "agent_servers": { "gemini": { "ignore_system_version": false } }, ``` try this: https://github.com/google-gemini/gemini-cli/releases/tag/v0.18.0-preview.0 (they've re-added `read_many_files` tool in this...

> v18 is [out](https://github.com/google-gemini/gemini-cli/releases/tag/v0.18.0) and has [the fix](https://github.com/google-gemini/gemini-cli/pull/13338) in it. Regardless my current Zed is stuck in "loading" when using the Gemini Agent, so maybe it's not fully there? same...

hi, any update on this? i'd like to see libtorrent with stubs :D

you can create a custom pydantic schema for your error responses like, ```py class ErrorSchema(Schema): detail: str @router.post("/create_object", response={200: MyObjectOut, 400: ErrorSchema}) def create_something(): raise HttpError(400, "Some error") # .......