henkka14
henkka14
Hey yes, I've been having this issue as well as the static initializers were removed https://github.com/apache/pdfbox/commit/2d529f94b17a3f23aa8b2f566bc33947a91c245a I was initially thinking this could work for both v2.x.x and v3.0.0, but it...
Experiencing same issue `unknown call f introduced by ccall lowering getindex` on similar setup I am working with dev containers Ubuntu 22.04 Julia 1.9.4 VS Code 1.92.2
I was able to solve the issue now by using the solution provided by benlorenz in the commit. I am not familiar with the JuliaInterpreter code enough to know if...
I was also facing the issue previously and I was unable to use the debugger in VS Code. I've been able to get the debugger work currently on my development...
I have been experiencing similar issues after upgrading to Julia 1.12. We had a working setup still with Julia 1.9, but I have been trying to update to Julia 1.12....
Build errors seem to be caused by these two type clashes https://github.com/langchain4j/langchain4j/blob/main/langchain4j-open-ai/src/main/java/dev/langchain4j/model/openai/internal/chat/ResponseFormatType.java https://github.com/langchain4j/langchain4j/blob/main/langchain4j-core/src/main/java/dev/langchain4j/model/chat/request/ResponseFormatType.java The following could work in theory `ResponseFormatType.JSON` => `ResponseFormatType.JSON_SCHEMA` ``` if (this.responseFormat != null && ResponseFormatType.JSON_SCHEMA.equals(this.responseFormat.type())) {...
Other issues with the following ``` public ChatResponse doChat(ChatRequest chatRequest) { ResponseFormat requestResponseFormat = this.responseFormat; // Handle ChatRequest-level ResponseFormat if provided if (chatRequest.responseFormat() != null) { requestResponseFormat = chatRequest.responseFormat(); }...
Switched to using the default OpenAI library that also seems to work with Azure version by specifying base URL to point to Azure. Azure version of the OpenAI libraries seem...