Dave Syer
Dave Syer
You never said which version of grpc-spring you are using. Is it possibly not the latest?
Spring Boot has to deal with this with normal HTTP servers (netty, tomcat, etc.) so it should be possible to copy what we do there. One thing we do for...
Adding a new jar file is quite a big change. Probably the project maintainers should give a clear signal that this is a welcome addition. Adding tests to all examples...
I played around with this a bit. I still think starting on a random port would be useful, but I found this nice library: https://github.com/asarkar/grpc-test. You just have to declare...
UPDATE: I can reproduce the problem - you need 2 tests with different application contexts (so add a nested `@Configuration` or extra configuration in `@SpringBootTest`). Definitely should be solved using...
Probably duplicated in #829?
#829 was merged. Isn’t this redundant now?
FWIW I just tried my demo in a github action and the ollama models (x2) pulled in 30sec. It's almost not worth trying to cache. If only my network was...
Update. I got it working with this ```java @Bean @ServiceConnection public ChromaDBContainer chroma() { return new ChromaDBContainer(DockerImageName.parse("ghcr.io/chroma-core/chroma:0.5.5")); } @Bean @ServiceConnection public OllamaContainer ollama() throws Exception { @SuppressWarnings("resource") OllamaContainer ollama =...
I don't think I understand the example. Isn't it just doing this (i.e. marshalling a POST request and rendering a view)? ```java @Controller public class ExampleController { @PostMapping("/createUser") public String...