Skip to content

Commit

Permalink
feat: support for input image
Browse files Browse the repository at this point in the history
  • Loading branch information
xavidop committed Sep 12, 2024
1 parent 685b895 commit d268625
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ For more detailed examples and the explanation of other functionalities, refer t

## Supported models

This plugin supports all currently available **Chat/Completion** and **Embeddings** models from Github Models.
This plugin supports all currently available **Chat/Completion** and **Embeddings** models from Github Models. This plugin supports image input and multimodal models.

Still in progress:
1. Support for image input/output models
1. Support for image output models

## API Reference

Expand Down
4 changes: 2 additions & 2 deletions src/github_llms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const openAIGpt4o = modelRef({
supports: {
multiturn: true,
tools: true,
media: false,
media: true,
systemRole: true,
output: ["text", "json"],
},
Expand All @@ -69,7 +69,7 @@ export const openAIGpt4oMini = modelRef({
supports: {
multiturn: true,
tools: true,
media: false,
media: true,
systemRole: true,
output: ["text", "json"],
},
Expand Down

0 comments on commit d268625

Please sign in to comment.