mirror of
https://github.com/github/awesome-copilot.git
synced 2026-04-11 18:55:55 +00:00
40 lines
1.4 KiB
Java
40 lines
1.4 KiB
Java
///usr/bin/env jbang "$0" "$@" ; exit $?
|
|
//DEPS com.github:copilot-sdk-java:0.2.1-java.1
|
|
|
|
import com.github.copilot.sdk.*;
|
|
import com.github.copilot.sdk.events.*;
|
|
import com.github.copilot.sdk.json.*;
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
public class ErrorHandling {
|
|
public static void main(String[] args) {
|
|
try (var client = new CopilotClient()) {
|
|
client.start().get();
|
|
|
|
try (var session = client.createSession(
|
|
new SessionConfig()
|
|
.setOnPermissionRequest(PermissionHandler.APPROVE_ALL)
|
|
.setModel("gpt-5")).get()) {
|
|
|
|
session.on(AssistantMessageEvent.class,
|
|
msg -> System.out.println(msg.getData().content()));
|
|
|
|
session.sendAndWait(
|
|
new MessageOptions().setPrompt("Hello!")).get();
|
|
}
|
|
} catch (ExecutionException ex) {
|
|
Throwable cause = ex.getCause();
|
|
Throwable error = cause != null ? cause : ex;
|
|
System.err.println("Error: " + error.getMessage());
|
|
error.printStackTrace();
|
|
} catch (InterruptedException ex) {
|
|
Thread.currentThread().interrupt();
|
|
System.err.println("Interrupted: " + ex.getMessage());
|
|
ex.printStackTrace();
|
|
} catch (Exception ex) {
|
|
System.err.println("Error: " + ex.getMessage());
|
|
ex.printStackTrace();
|
|
}
|
|
}
|
|
}
|