File size: 2,542 Bytes
a6a07bb
05f1688
 
 
 
 
 
 
 
 
feadc2f
d0f9cf1
 
 
 
 
feadc2f
05f1688
 
 
 
 
 
 
 
 
 
 
 
 
 
d0f9cf1
 
 
05f1688
 
 
d0f9cf1
 
 
05f1688
 
 
d0f9cf1
 
 
05f1688
 
 
d0f9cf1
 
 
05f1688
 
 
d0f9cf1
 
 
05f1688
 
 
 
 
a6a07bb
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>Our Services</title>
</head>
<body>
    <header>
        <div class="logo">
            <img src="your_company_logo.png" alt="Company Logo" height="50">
        </div>
        <div class="header-content">
            <h1>Our Services</h1>
            <p>Explore our services below:</p>
        </div>
    </header>
    <main>
        <table>
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Demo Link</th>
                    <th>Doc Link</th>
                    <th>Use Case</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>AI Interviewer</td>
                    <td><a href="https://ai-interviewer.coffeebeans.io">Demo</a></td>
                    <td><a href="link">Documentation</a></td>
                    <td>1. Conduct interviews with AI capabilities.</td>
                </tr>
                <tr>
                    <td>PDF/CSV Reader</td>
                    <td><a href="https://huggingface.co/spaces/coffeebeans-ai/network18-demo">Demo</a></td>
                    <td><a href="link">Documentation</a></td>
                    <td>2. Extract and analyze text from PDF and CSV files.</td>
                </tr>
                <tr>
                    <td>In-House Document Assistant</td>
                    <td><a href="https://huggingface.co/spaces/coffeebeans-ai/In_House_Document_Assistant">Demo</a></td>
                    <td><a href="link">Documentation</a></td>
                    <td>3. Manage internal documents with ease.</td>
                </tr>
                <tr>
                    <td>Audio Sentiment Analysis</td>
                    <td><a href="https://huggingface.co/spaces/coffeebeans-ai/audio_sentiment_analysis">Demo</a></td>
                    <td><a href="link">Documentation</a></td>
                    <td>4. Analyze emotions in audio content.</td>
                </tr>
                <tr>
                    <td>Personality Chatbot</td>
                    <td><a href="https://huggingface.co/spaces/coffeebeans-ai/chatbot-personality">Demo</a></td>
                    <td><a href="link">Documentation</a></td>
                    <td>5. Engage users with customizable chatbots.</td>
                </tr>
            </tbody>
        </table>
    </main>
</body>
</html>