You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -55,7 +55,7 @@ When prompted to choose a **DSL**, select **Kotlin**.
55
55
56
56
## Install the Java SDK
57
57
58
-
This quickstart uses the Gradle dependency manager. You can find the client library and information for other dependency managers on the [Maven Central Repository](https://search.maven.org/artifact/com.microsoft.azure.cognitiveservices/azure-cognitiveservices-computervision).
58
+
This quickstart uses the Gradle dependency manager. You can find the client library and information for other dependency managers on the [Maven Central Repository](https://central.sonatype.com/search?q=azure-ai-openai).
59
59
60
60
Locate *build.gradle.kts* and open it with your preferred IDE or text editor. Then copy in the following build configuration. This configuration defines the project as a Java application whose entry point is the class **OpenAIQuickstart**. It imports the Azure AI Vision library.
61
61
@@ -71,7 +71,7 @@ repositories {
71
71
mavenCentral()
72
72
}
73
73
dependencies {
74
-
implementation(group ="com.azure", name ="azure-ai-openai", version ="1.0.0-beta.3")
74
+
implementation(group ="com.azure", name ="azure-ai-openai", version ="1.0.0-beta.10")
75
75
implementation("org.slf4j:slf4j-simple:1.7.9")
76
76
}
77
77
```
@@ -91,43 +91,50 @@ dependencies {
91
91
92
92
1. Open *OpenAIQuickstart.java* in your preferred editor or IDE and paste in the following code.
> For production, use a secure way of storing and accessing your credentials like [Azure Key Vault](../../../key-vault/general/overview.md). For more information about credential security, see the Azure AI services [security](../../security-features.md) article.
0 commit comments