Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
langroid-0.54.1-py3-none-any.whl | 2025-06-13 | 391.3 kB | |
langroid-0.54.1.tar.gz | 2025-06-13 | 343.8 kB | |
0.54.1 source code.tar.gz | 2025-06-13 | 54.2 MB | |
0.54.1 source code.zip | 2025-06-13 | 54.6 MB | |
README.md | 2025-06-13 | 413 Bytes | |
Totals: 5 Items | 109.5 MB | 0 |
New Feature: Early task termination on tool generation
Added done_if_tool
parameter to TaskConfig
. When set to True
, a Task will automatically terminate as soon as the LLM generates
any tool message, whether it is "handleable" by the agent or not. This is useful for workflows where tool generation signals task completion.
task = Task( agent, config=TaskConfig(done_if_tool=True) )