Kyle McCarthy

Results 48 comments of Kyle McCarthy

I am using this in production and haven't had any issues. However, I would highly recommend using the nest-next package so if I do discover anything you can easily update...

You are missing the git submodule, when you clone the repo add the `--recurse-submodules` flag (e.x. `git clone [email protected]:sobelio/llm-chain.git --recurse-submodules`). Since it sounds like the repo was already cloned, the...

As a disclaimer, there may be a better way to fix this, but I'm not super familiar with git submodules... From within the llama.cpp submodule directory (`cd crates/llm-chain-llama-sys/llama.cpp` from repo...

While not zero-allocation, have you considered integrating with the protobuf ecosystem? There is [prost-reflect](https://crates.io/crates/prost-reflect/) which provides a [`DynamicMessage` trait](https://docs.rs/prost-reflect/0.14.0/prost_reflect/struct.DynamicMessage.html) allowing field access via [`get_field`](https://docs.rs/prost-reflect/0.14.0/prost_reflect/struct.DynamicMessage.html#method.get_field). `Program` could then accept a [`DescriptorPool`](https://docs.rs/prost-reflect/0.14.0/prost_reflect/struct.DescriptorPool.html)...

I would totally be open to making you a co-maintainer. Do you have any specific proposal in mind? Part of me wonders if setting up nest as a [standalone application](https://docs.nestjs.com/standalone-applications)...

does this happen when you don't enable your HttpExceptionFilter? also can you provide a minimal reproducible example?

@gaoluona hey thanks for the PR -- do you know when/why the routes are accessible via `nextServer.router` sometimes instead of directly on `nextServer`? I think it would be valuable to...

Do you have `useFilesystemPublicRoutes` set to true or false?