djl
djl copied to clipboard
Does DJL support using large models? For example, Qwen
The best way to serve Qen model is to use DJLServing
You can use DJL as a client side to run inference, see: https://github.com/deepjavalibrary/djl/blob/master/extensions/genai/src/test/java/ai/djl/genai/openai/ChatCompletionTest.java#L59-L63
thank you