We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to work with MoE models like qwen2.5vl locally. Using the quarkus-langchain4j-ollama extensions already let's me use the following code:
Image langchainImage = Image.builder() .base64Data(base64String) // Use the base64 encoded string .mimeType(mimeType) .build();
But using it as input for the AIService right now:
String imageDescription = imageService.describeImage(langchainImage);
Leads to:
dev.langchain4j.exception.InternalServerException: {"error":"Failed to create new sequence: failed to process inputs: image: unknown format\n"}
Example Code that I would like to see work: https://github.com/myfear/ejq_substack_articles/blob/main/quarkus-image-describer/src/main/java/org/acme/ImageDescriberResource.java
No response
The text was updated successfully, but these errors were encountered:
Moved to Quarkus Langchain4j quarkiverse/quarkus-langchain4j#1531
Sorry, something went wrong.
🙏🏽
No branches or pull requests
Description
I want to work with MoE models like qwen2.5vl locally.
Using the quarkus-langchain4j-ollama extensions already let's me use the following code:
But using it as input for the AIService right now:
String imageDescription = imageService.describeImage(langchainImage);
Leads to:
dev.langchain4j.exception.InternalServerException: {"error":"Failed to create new sequence: failed to process inputs: image: unknown format\n"}
Example Code that I would like to see work: https://github.com/myfear/ejq_substack_articles/blob/main/quarkus-image-describer/src/main/java/org/acme/ImageDescriberResource.java
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: