Skip to content

Commit

Permalink
remove some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Yinnii committed Apr 11, 2024
1 parent 7f9b68d commit e980114
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public void run() {
} finally {
mongoClient.close();
}
System.out.println(newText);

System.out.println("Get llm-generated feedback and store as markdown.");
//get LLM-generated feedback
String url = "http://16.171.64.118:8000/input/recommend";
Expand Down Expand Up @@ -2096,11 +2096,9 @@ private JSONObject prepareXapiStatement(String user, String verbId, String topic
JSONObject actor = new JSONObject();
actor.put("objectType", "Agent");
JSONObject account = new JSONObject();
System.out.println("Homepage is: " + xapiHomepage);
account.put("name", user);
account.put("homePage", xapiHomepage);
actor.put("account", account);
System.out.println(account);
JSONObject verb = (JSONObject) p
.parse(new String("{'display':{'en-US':'"+verbId+"'},'id':'" + xapiUrl + "/definitions/mwb/verb/" +verbId+"'}"));
JSONObject object = (JSONObject) p
Expand Down

0 comments on commit e980114

Please sign in to comment.