Skip to content
Snippets Groups Projects
Commit 9597a7ea authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Adding time to generate model with AI

parent b1463f44
No related branches found
No related tags found
No related merge requests found
...@@ -123,6 +123,8 @@ public class JFrameAI extends JFrame implements ActionListener { ...@@ -123,6 +123,8 @@ public class JFrameAI extends JFrame implements ActionListener {
private HashMap<Integer, ImageIcon> rotatedI = new HashMap<>(); private HashMap<Integer, ImageIcon> rotatedI = new HashMap<>();
private JButton buttonClose, buttonStart, buttonApplyResponse; private JButton buttonClose, buttonStart, buttonApplyResponse;
private long startTime, endTime;
public JFrameAI(String title, MainGUI _mgui) { public JFrameAI(String title, MainGUI _mgui) {
super(title); super(title);
mgui = _mgui; mgui = _mgui;
...@@ -320,6 +322,7 @@ public class JFrameAI extends JFrame implements ActionListener { ...@@ -320,6 +322,7 @@ public class JFrameAI extends JFrame implements ActionListener {
private void start() { private void start() {
TraceManager.addDev("Start in JFrameAI"); TraceManager.addDev("Start in JFrameAI");
startTime = System.currentTimeMillis();
currentChatIndex = answerPane.getSelectedIndex(); currentChatIndex = answerPane.getSelectedIndex();
ChatData selected = selectedChat(); ChatData selected = selectedChat();
...@@ -395,6 +398,8 @@ public class JFrameAI extends JFrame implements ActionListener { ...@@ -395,6 +398,8 @@ public class JFrameAI extends JFrame implements ActionListener {
selected.aiInteract.makeRequest(question.getText()); selected.aiInteract.makeRequest(question.getText());
//question.setText("Total time: " + (endTime - startTime) + " ms");
} else { } else {
error("AI interface failed (no key has been set?)"); error("AI interface failed (no key has been set?)");
} }
...@@ -776,6 +781,9 @@ public class JFrameAI extends JFrame implements ActionListener { ...@@ -776,6 +781,9 @@ public class JFrameAI extends JFrame implements ActionListener {
lastAnswer = text; lastAnswer = text;
//GraphicLib.appendToPane(selectedChat().answer, "\nAI:" + text + "\n", Color.red); //GraphicLib.appendToPane(selectedChat().answer, "\nAI:" + text + "\n", Color.red);
enableDisableActions(); enableDisableActions();
endTime = System.currentTimeMillis();
GraphicLib.appendToPane(console, "Done. Total time: " + (endTime - startTime) + " ms\n", Color.black);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment