Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Gemini Docs #107

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ export default defineConfig({
text: "Groq",
link: "/providers/groq",
},
{
text: "Gemini",
link: "/providers/gemini",
},
{
text: "Mistral",
link: "/providers/mistral",
Expand Down
14 changes: 3 additions & 11 deletions docs/components/ProviderSupport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ export default {
},
{
name: "Gemini",
text: Planned,
text: Supported,
structured: Planned,
embeddings: Planned,
image: Planned,
embeddings: Supported,
image: Supported,
tools: Planned,
},
{
Expand Down Expand Up @@ -231,14 +231,6 @@ export default {
image: Supported,
tools: Supported,
},
{
name: "Gemini",
text: Supported,
structured: Planned,
embeddings: Supported,
image: Supported,
tools: Planned,
},
],
};
},
Expand Down
5 changes: 5 additions & 0 deletions docs/providers/gemini.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@
'url' => env('GEMINI_URL', 'https://generativelanguage.googleapis.com/v1beta/models'),
],
```

## Limitations

- The tool calling is not supported.
- The structured output is not supported.
Loading