File size: 737 Bytes
fc6bdeb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
language: []
library_name: coreml
pipeline_tag: text-generation
tags:
- CoreMLPipelines
---

# coreml-Qwen3-0.6B

This model was converted from Local model: /Users/xdgcc/Downloads/Qwen3-0.6B to CoreML using [coremlpipelinestools](https://github.com/finnvoor/CoreMLPipelines/tree/main/coremlpipelinestools).

### Use with [CoreMLPipelines](https://github.com/finnvoor/CoreMLPipelines)

```swift
import CoreMLPipelines

let pipeline = try await TextGenerationPipeline(
    modelName: "XDGCC/coreml-Qwen3-0.6B"
)
let stream = pipeline(
    messages: [[
        "role": "user",
        "content": "Write a poem about Ireland"
    ]]
)
for try await text in stream {
    print(text, terminator: "")
    fflush(stdout)
}
print("")
```