-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtach.toml
59 lines (45 loc) · 1.52 KB
/
tach.toml
1
2
3
4
5
6
7
8
9
10
11
12
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
interfaces = []
exclude = ["**/*__pycache__", "**/*egg-info", "**/docs", "**/tests", "**/venv"]
source_roots = ["./src/"]
[[modules]]
path = "llmling_agent_providers"
depends_on = ["llmling_agent", "llmling_agent_commands"]
[[modules]]
path = "llmling_textual"
depends_on = ["llmling_agent", "llmling_agent_commands", "llmling_agent_cli"]
[[modules]]
path = "llmling_agent_commands"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_storage"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_events"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_prompts"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_converters"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_web"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_docs"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent"
depends_on = ["llmling_agent_prompts", "llmling_agent_tools", "llmling_agent_providers", "llmling_agent_events", "llmling_agent_functional", "llmling_agent_cli", "llmling_agent_converters", "llmling_agent_storage"]
[[modules]]
path = "llmling_agent_examples"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_cli"
depends_on = ["llmling_textual", "llmling_agent_commands", "llmling_agent", "llmling_agent_storage", "llmling_agent_web"]
[[modules]]
path = "llmling_agent_functional"
depends_on = ["llmling_agent"]
[[modules]]
path = "llmling_agent_tools"
depends_on = ["llmling_agent_providers", "llmling_agent", "llmling_agent_storage"]