llm-tool 0.8.0

Framework-agnostic Rust tool definitions for LLM agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
---
name: multi_env
description: Template with multiple env variables
env:
  - SERVICE_NAME = str
  - REGION = str
  - MAX_CONNECTIONS = int := 100
  - DEBUG_MODE = bool := false
---

Service {{ SERVICE_NAME }} in {{ REGION }} with {{ MAX_CONNECTIONS }} connections (debug={{ DEBUG_MODE }}).