Skip to content

Commit

Permalink
feat: update image examples with llama3.2-vision
Browse files Browse the repository at this point in the history
  • Loading branch information
sgomez committed Nov 6, 2024
1 parent 1143b83 commit 335c613
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/ai-core/src/generate-text/ollama-image-base64.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ async function main(model: Parameters<typeof ollama>[0]) {
console.log(result.text)
}

buildProgram('llava-llama3', main).catch(console.error)
buildProgram('llama3.2-vision', main).catch(console.error)
2 changes: 1 addition & 1 deletion examples/ai-core/src/generate-text/ollama-image-url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ async function main(model: Parameters<typeof ollama>[0]) {
console.log(result.text)
}

buildProgram('llava-llama3', main).catch(console.error)
buildProgram('llama3.2-vision', main).catch(console.error)
2 changes: 1 addition & 1 deletion examples/ai-core/src/generate-text/ollama-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ async function main(model: Parameters<typeof ollama>[0]) {
console.log(result.text)
}

buildProgram('llava-llama3', main).catch(console.error)
buildProgram('llama3.2-vision', main).catch(console.error)

0 comments on commit 335c613

Please sign in to comment.