Releases: simonw/llm-gemini
Releases · simonw/llm-gemini
0.9
- Added support for grounding prompts against Google search using the new
-o google_search 1
option. Thanks, Ricardo Mestre. #29 - Added support for
text/plain
andtext/csv
attachments. Thanks, Michele Gregori. #34 - Fixed bug handling
application/ogg
attachments. #35 - New model:
learnlm-1.5-pro-experimental
. Thanks, Leonard Tulipan. #36 - New model:
gemini-2.0-flash-thinking-exp-01-21
. #37
0.8
0.7
0.6
0.5
0.4.2
0.5a0
0.4.1
0.4
0.3
- Multi-modal model support with LLM 0.17 attachments. Gemini 1.5 models can now accept images, audio and video. #17
llm -m gemini-1.5-flash-8b-latest 'describe image' \ -a https://static.simonwillison.net/static/2024/pelicans.jpg
- Support for code execution mode. #18
llm -m gemini-1.5-pro-latest 'write and execute python to calculate factorial of 13' -o code_execution 1
- Support for options:
temperature
,max_output_tokens
,top_p
,top_k
. Pass these as e.g.-o temperature 0.5
. #3