We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6177770 commit 91ab9edCopy full SHA for 91ab9ed
swift/LlavaTests/LlavaTests.swift
@@ -3,13 +3,13 @@ import XCTest
3
4
final class LlavaTests: XCTestCase {
5
func testOmniVlm() {
6
- omnivlm_init("/Users/liute/Downloads/model-q4_0.gguf",
7
- "/Users/liute/Downloads/projector-q4_0.gguf",
+ omnivlm_init("model-q4_0.gguf",
+ "projector-q4_0.gguf",
8
"vlm-81-instruct")
9
10
let startTime = Date()
11
12
- if let cString = omnivlm_inference("describe the image", "/Users/liute/Downloads/cat.png") {
+ if let cString = omnivlm_inference("describe the image", "cat.png") {
13
let res = String(cString: cString)
14
print("res: \(res)")
15
0 commit comments