-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswarm.toml
More file actions
101 lines (87 loc) · 2.28 KB
/
swarm.toml
File metadata and controls
101 lines (87 loc) · 2.28 KB
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[swarm]
id = "debt-relief-swarm"
name = "Debt Relief Swarm"
tagline = "9 AI specialists analyze your debt and build a personalized plan to become debt-free"
version = "0.1.0"
tier = "Business"
category = "Finance"
port = 3200
estimated_seconds = 90
cost_per_task = "$0.00"
[input]
description = "Debts (name, balance, APR, min payment, type), monthly income, monthly expenses, credit score (optional)"
[output]
description = "Recommended strategy, projected savings, months to debt-free, step-by-step action plan, warnings"
[knowledge_graphs]
required = ["debt_relief"]
optional = ["finance", "regulatory"]
[[models]]
name = "qwen2.5:7b"
vram_mb = 6000
purpose = "Agent reasoning and synthesis"
fallback = "qwen2.5:3b"
[api]
providers = []
[[agents]]
name = "debt_analyst"
role = "Categorize debts, calculate true costs, identify highest-impact targets"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "strategy_evaluator"
role = "Evaluate consolidation strategies: balance transfer, DMP, settlement, avalanche, snowball"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "risk_assessor"
role = "Find risks and gotchas in proposed strategies"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "credit_advisor"
role = "Analyze credit score impact of each strategy"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "legal_advisor"
role = "FDCPA rights, statute of limitations, garnishment protections"
tier = "Home"
uses_graph = true
uses_model = false
uses_api = false
[[agents]]
name = "negotiation_coach"
role = "Specific tactics and scripts for creditor calls"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "timeline_builder"
role = "Month-by-month payoff projections with milestones"
tier = "Home"
uses_graph = false
uses_model = false
uses_api = false
[[agents]]
name = "blind_spot_finder"
role = "Tax implications, employer credit checks, co-signer risks"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false
[[agents]]
name = "action_planner"
role = "Final step-by-step plan with phone numbers, dollar amounts, timelines"
tier = "Business"
uses_graph = true
uses_model = true
uses_api = false