Brijesh's Git Server — orchestrator-website @ 8d73f631b29b85a0c6e97c5d27720f6cec30bf50

index.html (view raw)

 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
<!doctype html>
<html>
    <head>
        <title>Orchestrator</title>
        <style>
            @import url("https://fonts.googleapis.com/css2?family=Geist:wght@300&display=swap");
            body {
                font-family: "Geist", serif;
            }
            video {
                max-width: 800px;
            }

            @media (max-width: 800px) {
                video {
                    max-width: 100%;
                }
            }
        </style>
        <script src="https://unpkg.com/@tailwindcss/browser@4"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    </head>
    <body class="m-5 space-y-2">
        <p>
            Orchestrator is a browser automation service similar to OpenAI's
            operator
        </p>
        <p>
            BYOM; Orchestrator supports a variety of LLM providers, including AWS Bedrock, Anthropic, Google Vertex, Google AI, OpenAI, DeepSeek, and more
        </p>
        <br />
        <p>
            Currently building alpha version, see early demos below
        </p>
        <video controls class="mb-4 bg-black">
            <source src="./demo-1.mp4" type="video/mp4" />
        </video>
        <video controls class="mb-4 bg-black">
            <source src="./demo-2.mp4" type="video/mp4" />
        </video>
    </body>
</html>