-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
157 lines (148 loc) · 5.8 KB
/
index.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToolMate AI</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
color: #333;
}
header {
background: linear-gradient(90deg, #0078ff, #00d4ff);
padding: 20px;
text-align: center;
color: #fff;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
margin: 10px 0 0;
}
.container {
padding: 20px;
max-width: 1200px;
margin: auto;
}
.section {
margin-bottom: 40px;
}
.section h2 {
font-size: 1.8rem;
color: #0078ff;
}
.section p {
font-size: 1rem;
line-height: 1.6;
}
.section img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-top: 20px;
}
.btn {
display: inline-block;
background: #0078ff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
transition: background 0.3s;
}
.btn:hover {
background: #005bb5;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.feature-card {
background: #fff;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>ToolMate AI</h1>
<p>Your AI companion for smarter workflows and seamless task execution.</p>
</header>
<main class="container">
<section class="section">
<h2>What is ToolMate AI?</h2>
<p>ToolMate AI, formerly known as LetMeDoIt AI, integrates advanced agents, tools, and plugins to provide exceptional conversational, generative, and task automation capabilities. Designed for simplicity and power, ToolMate AI is perfect for users tackling multi-step projects or looking for smarter workflow solutions.</p>
<a href="https://youtu.be/kLv0lUNoTQw" class="btn">Watch Video Overview</a>
</section>
<section class="section">
<h2>Why Choose ToolMate AI?</h2>
<div class="features">
<div class="feature-card">
<h3>Multi-Tool Support</h3>
<img src="https://github.com/eliranwong/toolmate/assets/25262722/5582d519-b925-4e1b-8fd8-ecaa8422d391" alt="Multi-Tool Support">
<p>Run multiple tools seamlessly in a single request.</p>
</div>
<div class="feature-card">
<h3>Graphical Interface</h3>
<img src="https://github.com/user-attachments/assets/9cc9503b-5ac6-4fc1-959a-3a58c2b3b869" alt="Graphical Interface">
<p>Manage workflows through an intuitive graphical interface.</p>
</div>
<div class="feature-card">
<h3>Advanced Plugins</h3>
<img src="https://github.com/eliranwong/toolmate/assets/25262722/6bb4b2f6-5684-42c1-95e3-7b12c3a38db6" alt="Advanced Plugins">
<p>Customize and expand functionality with powerful plugins.</p>
</div>
</div>
</section>
<section class="section">
<h2>How It Works</h2>
<img src="https://github.com/user-attachments/assets/c5899d76-287b-4dfb-821c-561e9aa14dc0" alt="Task Execution">
<p>ToolMate AI makes automation simple. Use natural language commands to select tools or manually declare workflows. Enjoy features like tool auto-selection, running predefined workflows, and command chaining.</p>
</section>
<section class="section">
<h2>Supported Platforms</h2>
<p>ToolMate AI is versatile and supports multiple platforms, including Windows, macOS, Linux, ChromeOS, and Android. With Llama-cpp-python as its free default backend, users can integrate other leading AI models seamlessly.</p>
<img src="https://github.com/user-attachments/assets/cf60af53-3770-4038-a256-6d931e846c00" alt="Supported Backends">
</section>
<section class="section">
<h2>Get Started</h2>
<p>Install ToolMate AI and start automating your workflows today!</p>
<pre><code>pip install --upgrade toolmate</code></pre>
<p>Lite Version for faster performance and Android support</p>
<pre><code>pip install --upgrade toolmate_lite</code></pre>
<a href="https://github.com/eliranwong/toolmate" class="btn">Visit Documentation</a>
</section>
<section class="section">
<h2>Support and Contributions</h2>
<p>Join us in enhancing ToolMate AI. Your support helps shape the future of this project.</p>
<a href="https://www.paypal.me/toolmate" class="btn">Donate</a>
</section>
<section class="section">
<h2>Contact</h2>
<p>We would like to hear from your.</p>
<a href="mailto:[email protected]" class="btn">Email</a>
</section>
</main>
<footer>
<p>© 2025 ToolMate AI. All Rights Reserved.</p>
</footer>
</body>
</html>