File tree Expand file tree Collapse file tree
code_samples/ai_actions/config/packages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,17 +4,17 @@ ibexa_connector_gemini:
44 gemini-pro-latest :
55 label : ' Gemini Pro Latest'
66 max_tokens : 4096
7- gemini-flash-latest :
8- label : ' Gemini Flash Latest'
9- max_tokens : 4096
10- default_model : gemini-pro-latest
11- default_max_tokens : 4096 # Must be <= the model’s max_tokens
12- default_temperature : 0.8
13- image_to_text :
14- models :
15- gemini-flash-latest :
16- label : ' Gemini Flash Latest'
17- max_tokens : 4096
18- default_model : gemini-flash-latest
19- default_max_tokens : 4096
20- default_temperature : 1.0
7+ gemini-flash-latest :
8+ label : ' Gemini Flash Latest'
9+ max_tokens : 4096
10+ default_model : gemini-pro-latest
11+ default_max_tokens : 4096 # Must be <= the model’s max_tokens
12+ default_temperature : 0.8
13+ image_to_text :
14+ models :
15+ gemini-flash-latest :
16+ label : ' Gemini Flash Latest'
17+ max_tokens : 4096
18+ default_model : gemini-flash-latest
19+ default_max_tokens : 4096
20+ default_temperature : 1.0
Original file line number Diff line number Diff line change @@ -89,6 +89,12 @@ Run the following command to install the package:
8989composer require ibexa/connector-gemini
9090```
9191
92+ Then, you ** must** add the bundle to the list in ` config/bundles.php ` manually:
93+
94+ ``` php
95+ Ibexa\Bundle\ConnectorGemini\IbexaConnectorGeminiBundle::class => ['all' => true],
96+ ```
97+
9298This command adds the feature code, including basic handlers that let you refine text or generate alternative text for images.
9399
94100### Get API key
You can’t perform that action at this time.
0 commit comments