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
1. From the *src/main/java/com/example/aicompletiondemo* folder, open *AiCompletionApplication.java* in your preferred editor or IDE and paste in the following code:
log.info("Sending completion prompt to AI service. One moment please...");
170
+
var response = chatClient.prompt()
171
+
.user("When was Microsoft founded?")
172
+
.call()
173
+
.content();
174
+
175
+
log.info("Response: {}", response);
176
+
};
177
+
}
178
+
}
179
+
```
182
180
183
181
> [!IMPORTANT]
184
182
> For production, use a secure way of storing and accessing your credentials like [Azure Key Vault](/azure/key-vault/general/overview). For more information about credential security, see the Azure AI services [security](../../security-features.md) article.
@@ -198,14 +196,14 @@ ai-completion-demo/
198
196
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
199
197
' |____| .__|_| |_|_| |_\__, | / / / /
200
198
=========|_|==============|___/=/_/_/_/
201
-
:: Spring Boot :: (v3.1.5)
202
199
203
-
2023-11-07T12:47:46.126-06:00 INFO 98687 --- [ main] c.e.a.AiCompletionApplication : No active profile set, falling back to 1 default profile: "default"
204
-
2023-11-07T12:47:46.823-06:00 INFO 98687 --- [ main] c.e.a.AiCompletionApplication : Started AiCompletionApplication in 0.925 seconds (process running for 1.238)
205
-
Sending completion prompt to AI service. One moment please...
200
+
:: Spring Boot :: (v3.3.4)
206
201
207
-
Prompt created 1 generated response(s).
208
-
Generated respose from "assistant": Microsoft was founded on April 4, 1975.
202
+
2025-01-09T13:51:48.426-05:00 INFO 8264 --- [AICompletion] [ main] c.e.a.AiCompletionApplication : Starting AiCompletionApplication using Java 17.0.12 with PID 8264 (/Users/vega/dev/msft/spring-ai-samples/ai-completion-demo/target/classes started by vega in /Users/vega/dev/msft/spring-ai-samples/ai-completion-demo)
203
+
2025-01-09T13:51:48.427-05:00 INFO 8264 --- [AICompletion] [ main] c.e.a.AiCompletionApplication : No active profile set, falling back to 1 default profile: "default"
204
+
2025-01-09T13:51:48.781-05:00 INFO 8264 --- [AICompletion] [ main] c.e.a.AiCompletionApplication : Started AiCompletionApplication in 0.465 seconds (process running for 0.624)
205
+
2025-01-09T13:51:48.782-05:00 INFO 8264 --- [AICompletion] [ main] c.e.a.AiCompletionApplication : Sending completion prompt to AI service. One moment please...
206
+
2025-01-09T13:51:50.447-05:00 INFO 8264 --- [AICompletion] [ main] c.e.a.AiCompletionApplication : Response: Microsoft was founded on April 4, 1975, by Bill Gates and Paul Allen.
0 commit comments