Thinger Soft

Results 13 comments of Thinger Soft

Quick temporary workaround: ``` ClientHttpRequestFactorySettings requestFactorySettings = new ClientHttpRequestFactorySettings( connectTimeout , readTimeout , SslBundle.of(null)); ClientHttpRequestFactory requestFactory = ClientHttpRequestFactories.get(requestFactorySettings); Builder clientBuilder = RestClient.builder().requestFactory(requestFactory); OpenAiApi openAiApi = new OpenAiApi("https://api.openai.com", openAiToken, clientBuilder); openAiChatClient...

@making Acting on client at configuration level would affect the context-provided RestClientBuilder. So customization would apply wherever you injected a RestClientBuilder in your application and for every spring boot starter...

@making Indeeed my first thought was to introduce the new property at an higher level. Unfortunately the current codebase lacks infrastructure to define properties commons to all ModelClients. A few...

@markpollack Hello Mark, I may be missing something here since I didn't use Spring Retry before but I can't see how retry options and `RetryTemplate` in particular relates to client...

> @markpollack Hello Mark, I may be missing something here since I didn't use Spring Retry before but I can't see how retry options and `RetryTemplate` in particular relates to...

Hello, that's more or less the same strategy I tought to use for a generic approach to the timeout problem. I think it's a crucial aspect to take care of...

@making See [my comment on related issue](https://github.com/spring-projects/spring-ai/issues/354#issuecomment-1965799061).

@tzolov or @markpollack Please see [my latest comment on the issue](https://github.com/spring-projects/spring-ai/issues/354#issuecomment-1967462020)

> Sorry, i was confusing retry timeout with http timeout. We will address this issue, sorry for the confusion. @markpollack Ok, so you don't want me to contribute on it?