diff --git a/docs/docs/getting-started/getting-started.mdx b/docs/docs/getting-started/getting-started.mdx index c2f5cc43..2e982427 100644 --- a/docs/docs/getting-started/getting-started.mdx +++ b/docs/docs/getting-started/getting-started.mdx @@ -12,6 +12,9 @@ sophisticated computer vision accessible to everyone. Don't code? No problem! [Contact our team](mailto:support@groundlight.ai) and we'll build a custom solution tailored to your needs. +In this example, we'll build a simple eagle detector that can analyze live video streams and tell us if there are baby eagles being fed. +![Eagle Detector](/img/eagle_detector.png) + ### Prerequisites Before diving in, you'll need: 1. A [Groundlight account](https://dashboard.groundlight.ai/) (sign up is quick and easy!) @@ -97,7 +100,7 @@ from groundlight import Groundlight, Detector, ImageQuery gl = Groundlight() detector: Detector = gl.get_or_create_detector( name="eagle-detector", - query="Is there an eagle visible?", + query="Are the baby eagles being fed??", ) # Big Bear Bald Eagle Nest livestream diff --git a/docs/static/img/eagle_detector.png b/docs/static/img/eagle_detector.png new file mode 100644 index 00000000..067295ed Binary files /dev/null and b/docs/static/img/eagle_detector.png differ