tool_discovery
Class info¶
🛈 DocStrings¶
Functions to discover available tools.
get_tools
¶
Get available tools from specified source.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source
|
ToolSource
|
Which tool source to query |
required |
include_descriptions
|
bool
|
Whether to include tool descriptions |
False
|
Returns:
Type | Description |
---|---|
dict[str, str | None]
|
Dict mapping tool names to descriptions (or None if descriptions disabled) |
Source code in src/llmling_agent/tools/tool_discovery.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|