Spaces:
Running
Running
deepakchawla-cb
commited on
Commit
•
05f1688
1
Parent(s):
a6a07bb
Update index.html
Browse files- index.html +56 -17
index.html
CHANGED
@@ -1,19 +1,58 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<link rel="stylesheet" href="styles.css">
|
7 |
+
<title>Our Services</title>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<header>
|
11 |
+
<h1>Our Services</h1>
|
12 |
+
</header>
|
13 |
+
<main>
|
14 |
+
<table>
|
15 |
+
<thead>
|
16 |
+
<tr>
|
17 |
+
<th>Name</th>
|
18 |
+
<th>Demo Link</th>
|
19 |
+
<th>Doc Link</th>
|
20 |
+
<th>Use Case</th>
|
21 |
+
</tr>
|
22 |
+
</thead>
|
23 |
+
<tbody>
|
24 |
+
<tr>
|
25 |
+
<td>AI Interviewer</td>
|
26 |
+
<td><a href="https://ai-interviewer.coffeebeans.io/">https://ai-interviewer.coffeebeans.io/</a></td>
|
27 |
+
<td>[Documentation](link)</td>
|
28 |
+
<td>1. AI Interviewer is a powerful tool for conducting interviews with AI capabilities.</td>
|
29 |
+
</tr>
|
30 |
+
<tr>
|
31 |
+
<td>PDF/CSV Reader</td>
|
32 |
+
<td><a href="https://huggingface.co/spaces/coffeebeans-ai/network18-demo">https://huggingface.co/spaces/coffeebeans-ai/network18-demo</a></td>
|
33 |
+
<td>[Documentation](link)</td>
|
34 |
+
<td>2. PDF/CSV Reader provides text extraction and analysis from PDF and CSV files.</td>
|
35 |
+
</tr>
|
36 |
+
<tr>
|
37 |
+
<td>In-House Document Assistant</td>
|
38 |
+
<td><a href="https://huggingface.co/spaces/coffeebeans-ai/In_House_Document_Assistant">https://huggingface.co/spaces/coffeebeans-ai/In_House_Document_Assistant</a></td>
|
39 |
+
<td>[Documentation](link)</td>
|
40 |
+
<td>3. In-House Document Assistant assists with internal document management and organization.</td>
|
41 |
+
</tr>
|
42 |
+
<tr>
|
43 |
+
<td>Audio Sentiment Analysis</td>
|
44 |
+
<td><a href="https://huggingface.co/spaces/coffeebeans-ai/audio_sentiment_analysis">https://huggingface.co/spaces/coffeebeans-ai/audio_sentiment_analysis</a></td>
|
45 |
+
<td>[Documentation](link)</td>
|
46 |
+
<td>4. Audio Sentiment Analysis offers emotional analysis for audio content.</td>
|
47 |
+
</tr>
|
48 |
+
<tr>
|
49 |
+
<td>Personality Chatbot</td>
|
50 |
+
<td><a href="https://huggingface.co/spaces/coffeebeans-ai/chatbot-personality">https://huggingface.co/spaces/coffeebeans-ai/chatbot-personality</a></td>
|
51 |
+
<td>[Documentation](link)</td>
|
52 |
+
<td>5. Personality Chatbot provides interactive chatbot services with personality customization.</td>
|
53 |
+
</tr>
|
54 |
+
</tbody>
|
55 |
+
</table>
|
56 |
+
</main>
|
57 |
+
</body>
|
58 |
</html>
|