-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtos.html
More file actions
146 lines (121 loc) · 5.93 KB
/
tos.html
File metadata and controls
146 lines (121 loc) · 5.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Agent Kitten - Terms of Service</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #4D1F6D, #FF4081); /* Gradient background */
color: #e0e0e0;
line-height: 1.6;
}
h1, h2 {
color: #FF4081; /* Consistent with the main theme color */
text-align: center;
}
.container {
max-width: 900px;
margin: 40px auto;
background: rgba(30, 30, 30, 0.9);
padding: 30px;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}
pre {
background: #282828;
color: #ddd;
padding: 20px;
border-radius: 5px;
overflow-wrap: break-word;
white-space: pre-wrap;
word-wrap: break-word;
overflow: auto;
text-align: left;
}
p, a {
color: #e0e0e0;
}
a {
color: #FFEB3B; /* Light yellow for links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
text-align: center;
margin-top: 40px;
}
/* Ensure responsiveness */
@media (max-width: 768px) {
.container {
margin: 20px;
padding: 20px;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 20px;
}
pre {
font-size: 14px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Agent Kitten - Terms of Service</h1>
<h2>Effective Date: December 21, 2024</h2>
<p>By using the Agent Kitten Discord bot, you agree to comply with and be bound by the following terms and conditions.</p>
<pre>
1. Acceptance of Terms:
By interacting with the Agent Kitten bot, you accept these Terms of Service in full.
If you do not agree with any part of these terms, please do not use the bot.
2. User Conduct:
Users are expected to engage in respectful and appropriate conversations. Any form of harassment,
spamming, hate speech, discrimination, or inappropriate content will not be tolerated. Such conduct may result
in suspension or termination of access to Agent Kitten without notice or warning.
3. Service Description:
Agent Kitten provides interactive chat experiences, music playback services during voice calls, and other
features as outlined on our official Discord server. The bot may also offer assistance and information within the
Discord platform. However, we do not guarantee the accuracy of third-party information provided by the bot.
4. AI Automod Feature:
Agent Kitten offers an AI Automod feature for Discord servers, which is disabled by default. If enabled, this feature scans all user messages in the server (excluding those from users with a configurable role) through a set of semi-modifiable preset policies. Messages that violate these policies are deleted and reported to a designated channel. These messages are not stored after processing.
5. Modification of Terms:
We reserve the right to modify these terms at any time. Users will be notified of significant changes via official
Discord channels or directly through the Agent Kitten bot. Continued use of the bot following notice of such
changes constitutes acceptance of the updated terms.
6. Limitation of Liability:
Agent Kitten and its developers are not responsible for any direct, indirect, incidental, consequential,
punitive, or exemplary damages arising from the use or inability to use this bot, even if we have been advised of
the possibility of such damages. This limitation applies whether the alleged liability is based on contract,
tort (including negligence), strict liability, or any other basis.
7. Termination:
We reserve the right to terminate or suspend access to Agent Kitten at any time, without notice, for conduct that violates these terms
or is harmful to other users. Users who violate these terms may be banned from using Agent Kitten and its services permanently.
8. Governing Law:
These Terms of Service shall be governed by and construed in accordance with the laws of the United States of America.
9. Entire Agreement:
These Terms of Service constitute the entire agreement between you and Agent Kitten regarding the use of the bot
and supersede all prior understandings and agreements between you and Agent Kitten.
10. Amendments:
We may amend these Terms of Service from time to time by posting a revised version on our website.
The revised version will be effective at the time we post it. Your continued use of the bot following any changes constitutes your acceptance
of the new terms.
11. Contact Information:
If you have any questions or concerns regarding these Terms of Service, please contact us via <a href="https://discord.gg/ZwAhWC7mpZ">our official Discord server</a> or through email at <a href="mailto:contact@clowdertech.com">contact@clowdertech.com</a>
12. Data Breach Notification:
In the event of a data breach, we will alert all of our users in our Discord server at <a href="https://discord.gg/ZwAhWC7mpZ">https://discord.gg/ZwAhWC7mpZ</a>.
</pre>
<p class="footer"><a href="/">Back to Home</a></p>
</div>
</body>
</html>