Releases: shareup/shllm
Releases · shareup/shllm
v0.5.0
v0.4.3
v0.4.2
v0.4.1
v0.4.0
v0.3.0
v0.2.0
- Add support for Qwen3 models.
v0.1.0
- Convert
LLM
into anAsyncSequence
instead of anactor
.
let input: UserInput = .init(messages: [
["role": "system", "content": "You are a helpful assistant."],
["role": "user", "content": "What is the meaning of life?"],
])
guard let llm = try qwen2_5__7B(input) else { return }
for try await reply in llm {
print(reply)
}