Skip to content

Commit

Permalink
Updated Readme and Removed debug system out statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeyoYT committed May 16, 2024
1 parent 0e75c2f commit cb6f038
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ WHITELISTED_USERS='426802118683262976, 259214353931304963, 848561799132741652'
3. Code Quality is Low because i am still new with Ai and Lang Chain
4. This project uses a unreleased feature of JDA-5 that Supports User Installable Apps
5. Because it's a unreleased feature, i didn't find any proper command framework, so a workaround manual command registration code was used ( will be fixed in future release )
6. The Ai does not have a memory of previous conversation (would be added in future)
6. The Ai does not have persistent memory, so it will forget the conversation after restart
7. It's my first time making a docker image, so there might be some issues with it
8. First Response might be slow because of the model loading

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/me/ailama/commands/AiCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ public void handleCommand(SlashCommandInteractionEvent event) {
String urlOption = event.getOption("url") != null ? event.getOption("url").getAsString() : null;
boolean resetSession = event.getOption("reset-session") != null && event.getOption("reset-session").getAsBoolean();

System.out.println(urlOption);

String response = "";
String urlForContent = null;

Expand Down

0 comments on commit cb6f038

Please sign in to comment.