We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba6123 commit 3fb3192Copy full SHA for 3fb3192
1 file changed
gemini-llm-client/src/main/java/com/markwatson/gemini/GeminiCompletions.java
@@ -30,7 +30,6 @@ public static String getCompletion(String prompt) throws Exception {
30
String model = "gemini-2.5-flash";
31
URI uri = new URI("https://generativelanguage.googleapis.com/v1beta/models/" + model + ":generateContent?key=" + apiKey);
32
URL url = uri.toURL();
33
- System.out.println("\n\nurl:\n\n" + url + "\n\n");
34
35
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
36
connection.setRequestMethod("POST");
0 commit comments