Skip to content
Compare
Choose a tag to compare
@simonw simonw released this 29 Oct 04:12
· 3 commits to main since this release
  • 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