Alexander Berkes

Results 12 comments of Alexander Berkes

@rbgarga sorry for that, I reverted the README updates.

Hi there, I added some more code. See some explanation below: 1.) Added kevent to listen to unbound exits dhcpleases automatically exits now when unbound is killed or shuts down....

@rbgarga I hope this is better.

As @loos-br already statet this is for sure not a finished implementation. I just had this idea and thought it might be a good proposal for this already really long...

> @n3bul4 Have you heard from anyone or made any further progress? I am sorry but haven't heard from anyone nor made any further progress. If someone could tell me...

@Ruanandxian Hello, unfortunately I don't understand Chinese, but Google Translate gives me the following: > "Is there a way to ensure the stability of pushing the stream to the front...

> Thank you for providing the code that allows me to output results in stream mode in the project You're welcome! I'm glad to hear that the code I provided...

Hey @Mrblw, I haven't worked with webflux yet but I am pretty sure ``` .bodyValue(body) .retrieve() .bodyToFlux(String.class) ``` will read the whole response body at once into a single String...

@phazei Another way to use this in spring looks like this: ``` @GetMapping("/") @Streaming public ResponseEntity stream() { StreamingResponseBody responseBody = response -> { ChatCompletionRequest request = ChatCompletionRequest.builder() .messages(messages) .stream(true)...

> > @phazei Another way to use this in spring looks like this: > > ``` > > @GetMapping("/") > > @Streaming > > public ResponseEntity stream() { > >...