Mufeed VH
Mufeed VH
- https://lwn.net/Articles/542629/ - Ref: https://github.com/actix/actix-web/issues/91 - Ref: https://actix.rs/actix-web/actix_web/struct.HttpServer.html#method.listen
_Waiting reproducible test case._
Currently index files are assumed to be files starting with `index` and ends with `.html` or `.htm`, this should be configurable. Along with that, there should be an option to...
Every function in the configuration file should be documented in detail as to what it does and how it works, currently it's just a dump of the JSON file and...
Currently for convenience, a configuration file is generated on the first run and is always consumed from the same working directory as the binary is executed. This implementation was to...
This patch handles ZIP attacks such as **Zip Slip** (system path traversal), **Symlink Traversal**, and **absolute path write** (`/`) based on https://github.com/rust-compress/rc-zip/issues/17. Changes #### 1. `unwrap()` on `do_main()` panicked when...
Also resolve the current shell (`zsh`, etc.) Basically: ```shell $ ps -p $$ $ OR $ echo $0 ```
In the main UI, the Logs page is not implemented yet. Here's how to implement it: ## API ### Get Real-time Logs **Endpoint:** `/api/real-time-logs` **Method:** GET Poll this endpoint in...
Currently, the Token Usage is only calculated for an active session on a [Lazy initialized global value](https://github.com/stitionai/devika/blob/main/src/llm/llm.py#L11-L12). Implement Token Usage updates into the `AgentState` store. The value is already there:...