| Name | Modified | Size | Downloads / 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
- feat/configure temperature by @adi-wan-askui in https://github.com/askui/vision-agent/pull/176
- fix: switch default chat model to askui-hosted model by @adi-wan-askui in https://github.com/askui/vision-agent/pull/175
🚀 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) toaskui/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