llm_vllm 0.4.0 copy "llm_vllm: ^0.4.0" to clipboard
llm_vllm: ^0.4.0 copied to clipboard

VLLM backend implementation for LLM interactions. Provides streaming chat, embeddings, tool calling, vision support, and model management.

example/README.md

llm_vllm examples #

CLI #

dart run example/cli_example.dart
dart run example/cli_example.dart Qwen/Qwen3-0.6B
dart run example/cli_example.dart Qwen/Qwen3-0.6B http://localhost:8000

If your vLLM server was started with --api-key, pass the key as the third argument or set VLLM_API_KEY.

Minimal Usage #

import 'package:llm_vllm/llm_vllm.dart';

final repo = VLLMChatRepository(baseUrl: 'http://localhost:8000');

final stream = repo.streamChat('Qwen/Qwen3-0.6B', messages: [
  LLMMessage(role: LLMRole.user, content: 'Hello!'),
]);

await for (final chunk in stream) {
  print(chunk.message?.content ?? '');
}

Model Listing #

final vllmRepo = VLLMRepository(baseUrl: 'http://localhost:8000');
final models = await vllmRepo.models();

Other programs in this directory #

File Purpose
cli_example.dart Interactive streaming chat (above)
discover_example.dart Probes a deployment: models, capabilities, supported parameters
pool_load_example.dart Drives a VLLMPool across several instances and prints routing stats

The rest are diagnostic harnesses kept alongside docs/concurrent-send-stall.md, not usage examples:

File Purpose
concurrency_stall_repro.dart Concurrency soak; fails when a request exceeds 4x the run median
raw_socket_burst_probe.dart Raw Socket repro of the macOS write-event loss
dart_io_stall_probe.dart Same shape of traffic through dart:io's HttpClient
long_context_probe.dart Behaviour at large context sizes

Integration Environment #

export VLLM_BASE_URL=http://localhost:8000
export VLLM_CHAT_MODEL=Qwen/Qwen3-0.6B
export VLLM_EMBEDDING_MODEL=BAAI/bge-small-en-v1.5
export VLLM_API_KEY=optional-key
0
likes
160
points
453
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

VLLM backend implementation for LLM interactions. Provides streaming chat, embeddings, tool calling, vision support, and model management.

Repository (GitHub)
View/report issues
Contributing

Topics

#vllm #llm #ai #chat #embeddings

License

MIT (license)

Dependencies

http, llm_core

More

Packages that depend on llm_vllm