Download Latest Version v0.22.2 source code.tar.gz (589.5 kB)
Email in envelope

Get an email when there's a new version of AskUI Vision Agent

Home / v0.21.1
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-10-31 1.4 kB
v0.21.1 source code.tar.gz 2025-10-31 555.6 kB
v0.21.1 source code.zip 2025-10-31 685.3 kB
Totals: 3 Items   1.2 MB 0

What's Changed

🚀 Features

  • Temperature Configuration: Added support for configuring the temperature parameter for agent responses
  • Temperature can now be set via MessageSettings.temperature (range: 0.0 to 1.0)
  • Allows fine-tuning of response randomness and creativity
  • Example usage: ```python from askui import VisionAgent from askui.models.shared.settings import ActSettings, MessageSettings

    message_settings = MessageSettings(temperature=0.7) act_settings = ActSettings(messages=message_settings) with VisionAgent() as agent: agent.act("Tell me a joke", settings=act_settings) ```

🐛 Bug Fixes

  • Default Chat Model: Fixed the default chat model configuration
  • Changed from claude-sonnet-4-20250514 (Anthropic-hosted, which doesn't work out of the box) to askui/claude-haiku-4-5-20251001 (AskUI-hosted)
  • Provides faster and better responses by using Haiku instead of Sonnet 4
  • Ensures the default model works out of the box without additional configuration

Full Changelog: https://github.com/askui/vision-agent/compare/v0.21.0...v0.21.1

Source: README.md, updated 2025-10-31