Precious
Precious
If you did change `.env.example` to `.env` and provided the `OPENAI_API_KEY` that should be ok. Can you give more context like - your OS - the command you ran
Yes, this would work because it would take the variable from your `.env `file when been run as build. If you are running `browser-agent` as a CLI (after `cargo install`),...
This is an interesting one. Although there is a stats impl for tracking: https://github.com/chainbound/msg-rs/blob/26492f307e4720a08dbdef5fe51785bbd14c1e3d/msg-socket/src/pub/socket.rs#L162-L165 Using metrics we could do (pseoducode): ```rust // Broadcast the message directly to all active sessions....
Thanks for clarifying, so expanding on `SocketStats` should be enough. what do you think of this: ```rust pub(crate) fn increment_lost_messages(&self) { self.lost_messages.fetch_add(1, Ordering::Relaxed); } ``` Usage: ```rust // Broadcast the...
@kroitor @frosty00 I think all checks have passed for LCX. Can we merge this weekend?
@frosty00 can we merge/close this now