Daniel Clough

Results 6 comments of Daniel Clough

Same problem here. matterbridge-1.18.3-linux-64bit My matterbridge.toml is similar to the config above, without the `[gateway.inout.options]`. Similar problem with Gitter/Discord as well. With Keybase it only reads/writes to/from one channel in...

I seem to be having a very similar problem. I'm not 100% sure how to confirm this error is coming from the same underlying issue - or go about fixing...

I was able to reset the user by: 1. entering database 2. using db 3. `UPDATE user SET is_deleted=1;` 4. wait for restart (or manually restart) 5. `UPDATE user SET...

For me the problem was loading the `venv` as described in [these installation instructions](https://github.com/mosaicml/llm-foundry#installation).

What about using media queries to disable? For example: ```css @media (min-width: 900px) { @keyframes -global-from-left { 0% { transform: rotateX(50deg) translateX(-200vw) skewX(-50deg); opacity: 0; } 100% { transform: rotateX(0deg)...

[Here is another example to reference](https://github.com/danielclough/candle_chat/blob/e519ade613d32394f6f00be714d8dce4c9160c16/backend/src/mistral/types/text_generation.rs). The model loads when the server starts so that multiple users can connect to the same instance. I'm just passing a `&model` and then...