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 43 |
<!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 lg:my-20 lg:max-w-2xl lg:mx-auto"> <img src="./logo.svg" class="w-20 lg:w-32 mx-auto" /> <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 lg:mt-4 lg:mb-8 bg-black lg:mx-auto"> <source src="./demo-1.mp4" type="video/mp4" /> </video> <video controls class="mb-4 lg:mt-4 lg:mb-8 bg-black lg:mx-auto"> <source src="./demo-2.mp4" type="video/mp4" /> </video> </body> </html> |