diff --git a/README.md b/README.md
index 5b8a4d76e..97eaa98d2 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,44 @@ Let's make your `@Beans` intelligent!
* [Documentation](https://docs.spring.io/spring-ai/reference/)
* [JavaDocs](https://docs.spring.io/spring-ai/docs/current-SNAPSHOT/)
+## Dependencies
+
+Check out the workshop below but if you want to add the necessary goodies by hand, you will need to add the snapshot repository
+
+```xml
+
+
+ spring-snapshots
+ Spring Snapshots
+ https://repo.spring.io/snapshot
+
+ false
+
+
+
+```
+
+And the Spring Boot Starter depending on if you are using Azure Open AI or Open AI.
+
+* Azure OpenAI
+```xml
+
+ org.springframework.experimental.ai
+ spring-ai-azure-openai-spring-boot-starter
+ 0.2.0-SNAPSHOT
+
+```
+
+* OpenAI
+
+```xml
+
+ org.springframework.experimental.ai
+ spring-ai-openai-spring-boot-starter
+ 0.2.0-SNAPSHOT
+
+```
+
## Workshop
* You can try out the features of Spring AI by following the [workshop material for Azure OpenAI](https://github.com/markpollack/spring-ai-azure-workshop)