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

Adding independent AI interface

parent ca7092f8
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
package ai; package ai;
import avatartranslator.AvatarSpecification;
/** /**
* Class AIBlock * Class AIBlock
...@@ -50,7 +51,7 @@ package ai; ...@@ -50,7 +51,7 @@ package ai;
*/ */
public class AIBlock { public class AIBlock extends AIInteract {
public static String KNOWLEDGES_ON_JSON_FOR_BLOCKS_AND_ATTRIBUTES = "When you are asked to identify SysML blocks, return them as a JSON specification" + public static String KNOWLEDGES_ON_JSON_FOR_BLOCKS_AND_ATTRIBUTES = "When you are asked to identify SysML blocks, return them as a JSON specification" +
" " + " " +
...@@ -58,16 +59,41 @@ public class AIBlock { ...@@ -58,16 +59,41 @@ public class AIBlock {
"{blocks: [{ \"name\": \"Name of block\", \"attributes\": [\"name\": \"name of attribute\", \"type\": \"int or bool\" ...} ...]" + "{blocks: [{ \"name\": \"Name of block\", \"attributes\": [\"name\": \"name of attribute\", \"type\": \"int or bool\" ...} ...]" +
"Use only attributes of type int or boolean. If you want to use \"String\" or another other attribute, use int."; "Use only attributes of type int or boolean. If you want to use \"String\" or another other attribute, use int.";
private AIChatData chatData;
private String QUESTION_IDENTIFY_SYSTEM_BLOCKS = "From the following system specification, using the specified JSON format, identify the " +
"typical system blocks and their attributes. Do respect the JSON format.\n";
public AIBlock(AIChatData _chatData) { public AIBlock(AIChatData _chatData) {
chatData = _chatData; super(_chatData);
} }
public void makeQuestion() { public void request(String data) {
String questionT = QUESTION_IDENTIFY_SYSTEM_BLOCKS + "\n" + data.trim() + "\n";
if (!chatData.knowledgeOnBlockJSON) {
chatData.knowledgeOnBlockJSON = true;
chatData.aiinterface.addKnowledge(KNOWLEDGES_ON_JSON_FOR_BLOCKS_AND_ATTRIBUTES, "ok");
}
boolean done = false;
int cpt = 0;
while (!done) {
boolean ok = makeQuestion(questionT);
if (!ok) {
done = true;
}
AvatarSpecification specification = AvatarSpecification.fromJSON(chatData.lastAnswer, "design", null);
}
} }
} }
...@@ -55,7 +55,10 @@ public interface AIFeedback { ...@@ -55,7 +55,10 @@ public interface AIFeedback {
public void setRunning(boolean b); public void setRunning(boolean b);
public void addInformation(String text); public void addInformation(String text); // e.g. to information pane
public void addToChat(String data, boolean user); // e.g. to current chat pane
public void addError(String text); // e.g. to error pane
public void setNewBlockDiagram(AvatarSpecification avspec); public void setNewBlockDiagram(AvatarSpecification avspec);
public void setAnswerText(String text); public void setAnswerText(String text);
......
/* Copyright or (C) or Copr. GET / ENST, Telecom-Paris, Ludovic Apvrille
*
* ludovic.apvrille AT enst.fr
*
* This software is a computer program whose purpose is to allow the
* edition of TURTLE analysis, design and deployment diagrams, to
* allow the generation of RT-LOTOS or Java code from this diagram,
* and at last to allow the analysis of formal validation traces
* obtained from external tools, e.g. RTL from LAAS-CNRS and CADP
* from INRIA Rhone-Alpes.
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
* modify and/ or redistribute the software under the terms of the CeCILL
* license as circulated by CEA, CNRS and INRIA at the following URL
* "http://www.cecill.info".
*
* As a counterpart to the access to the source code and rights to copy,
* modify and redistribute granted by the license, users are provided only
* with a limited warranty and the software's author, the holder of the
* economic rights, and the successive licensors have only limited
* liability.
*
* In this respect, the user's attention is drawn to the risks associated
* with loading, using, modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software,
* that may mean that it is complicated to manipulate, and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software's suitability as regards their
* requirements in conditions enabling the security of their systems and/or
* data to be ensured and, more generally, to use and operate it in the
* same conditions as regards security.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
*/
package ai;
import myutil.AIInterfaceException;
import myutil.GraphicLib;
import java.awt.*;
/**
* Class AIInteract
*
* Creation: 02/06/2023
* @version 1.0 02/06/2023
* @author Ludovic APVRILLE
*/
public abstract class AIInteract {
protected AIChatData chatData;
public AIInteract(AIChatData _chatData) {
chatData = _chatData;
}
public abstract void request(String data);
// Returns true if there was no problem ; false otherwise
public boolean makeQuestion(String _question) {
chatData.feedback.addToChat(_question, true);
try {
chatData.feedback.addInformation("Connecting, waiting for answer\n");
chatData.lastAnswer = chatData.aiinterface.chat(_question, true, true);
} catch (AIInterfaceException aiie) {
chatData.feedback.addError(aiie.getMessage());
return false;
}
chatData.feedback.addInformation("Got answer from ai. All done.\n\n");
chatData.feedback.addToChat(chatData.lastAnswer, false);
return true;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment