Releases: simonw/llm-gemini
Releases · simonw/llm-gemini
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
0.3a0
- Support for multi-modal models using attachments in LLM 0.17a0.
0.2
- Added support for the inexpensive new Gemini 1.5 Flash-8B:
llm -m gemini-1.5-flash-8b-latest "say hi"
#14
- First non-alpha release.
0.1a5
- New Gemini 001 and 002 models.
0.1a4
- Added support for the new Gemini 1.5 Flash model.
llm -m gemini-1.5-flash-latest 'a short poem about otters'
#9
0.1a3
- Support for the
text-embedding-004
embedding model: llm embed -m text-embedding-004 -c 'hello world'
. #7
0.1a2
- Support for system instructions:
llm -m p15 'say hi three times three different ways' --system 'in german'
. #6
0.1a1
- Added support for Gemini 1.5 Pro, for users with access to the API preview. Use that model with
llm -m gemini-1.5-pro-latest "prompt"
. #5