teff.tool.builtin.fs¶
teff.tool.builtin.fs
¶
Filesystem/env tools — list, glob, env vars, and time.
Classes:
| Name | Description |
|---|---|
CurrentTimeTool |
Get the current date and time. |
GetEnvTool |
Read an environment variable, masking secret-looking values. |
GlobTool |
Find files matching a glob pattern. |
ListDirTool |
List the contents of a directory. |
CurrentTimeTool
¶
Bases: Tool
Get the current date and time.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict | None
|
Optional dict with |
None
|
Source code in teff/tool/builtin/fs.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
GetEnvTool
¶
Bases: Tool
Read an environment variable, masking secret-looking values.
Values whose names hint at credentials (TOKEN, API_KEY,
PASSWORD, DSN, …) are returned as *** unless the tool is
configured with mask_secrets=False.
Source code in teff/tool/builtin/fs.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
GlobTool
¶
Bases: Tool
Find files matching a glob pattern.
Source code in teff/tool/builtin/fs.py
44 45 46 47 48 49 50 51 52 53 54 | |
ListDirTool
¶
Bases: Tool
List the contents of a directory.
Source code in teff/tool/builtin/fs.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | |