Added a lot of things, but i guse bigest part is the external_tools.py generator

This commit is contained in:
2025-02-21 22:38:32 +01:00
parent da2cb69b1b
commit d465a5684c
13 changed files with 461 additions and 44 deletions

View File

@@ -40,13 +40,13 @@ public class Launcher {
case "--help", "-h" -> {
System.out.println("""
Launch options for AI_chat
-h --help Provides this help message
-s --server Starts the application as API server
-p --port Provides the port number that the API server shuld use, defaults to 39075
-o --output Redirects the API Server output to another file
-y Auto accepts to prompts, used for a seamless run. Not recomended when running as Display
-l --loadOld Loads the old message history. [Default]
--api Provides API docs
-h --help Provides this help message
-s --server Starts the application as API server
-p --port Provides the port number that the API server shuld use, defaults to 39075
-o --output Redirects the API Server output to another file
-y Auto accepts to prompts, used for a seamless run. Not recomended when running as Display
-d --dontloadOld Don't load old messages
--api Provides API docs
""");
return;
}
@@ -54,9 +54,9 @@ public class Launcher {
{
options.setAutoAccept(true);
}
case "-l", "--loadold" ->
case "-d", "--dontloadold" ->
{
options.setLoadOld(true);
options.setLoadOld(false);
}
default -> {