[package]
edition = "2021"
rust-version = "1.74"
name = "tool-loop-guard"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detect when an LLM agent gets stuck calling the same tool with the same args. Sliding-window guard that raises on repeated (tool_name, args) pairs. Custom key function support, zero heavy deps."
homepage = "https://github.com/MukundaKatta/tool-loop-guard-rs"
documentation = "https://docs.rs/tool-loop-guard"
readme = "README.md"
keywords = [
"llm",
"agents",
"loop",
"tool",
"safety",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/tool-loop-guard-rs"
[lib]
name = "tool_loop_guard"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_json]
version = "1"