add demo videos
Brijesh Wawdhane ops@brijesh.dev
Wed, 05 Feb 2025 03:00:50 +0530
3 files changed,
39 insertions(+),
15 deletions(-)
M
index.html
→
index.html
@@ -1,18 +1,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; } - </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 bg-black text-white space-y-2"> - <p>Orchestrator is a browser automation service similar to OpenAI's operator</p> - <p>BYOM; We can work with a variety of LLM providers including AWS Bedrock, Anthropic, Google Vertex, Google AI, OpenAI, DeepSeek and more</p> - <br /> - <p>Work in progress!</p> - </body> + <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>