software-zetic commited on
Commit
9507f3a
·
verified ·
1 Parent(s): dbbace0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -66,15 +66,15 @@ Deploy in seconds. The Melange SDK handles model fetching, NPU delegation, and h
66
 
67
  ### Android (Kotlin)
68
  ```kotlin
69
- val model = ZeticMLangeModel(context, "ZETIC-ai/chronos-bolt-tiny")
70
  val output = model.run(inputData)
71
  ```
72
 
73
 
74
  ### iOS (Swift)
75
  ```swift
76
- let model = try ZeticMLangeModel("ZETIC-ai/chronos-bolt-tiny")
77
- let result = try model.run(inputData)
78
  ```
79
 
80
  💡 **Looking for Java, React Native, or Flutter?** Visit [Melange Dashboard](https://mlange.zetic.ai).
 
66
 
67
  ### Android (Kotlin)
68
  ```kotlin
69
+ val model = ZeticMLangeHFModel(context, "ZETIC-ai/whisper-tiny-encoder")
70
  val output = model.run(inputData)
71
  ```
72
 
73
 
74
  ### iOS (Swift)
75
  ```swift
76
+ let model = try await ZeticMLangeHFModel("ZETIC-ai/whisper-tiny-encoder")
77
+ let outputs = try model.run(inputs: inputs)
78
  ```
79
 
80
  💡 **Looking for Java, React Native, or Flutter?** Visit [Melange Dashboard](https://mlange.zetic.ai).