EdgeChains.js is Full-Stack GenAI library. Front-end, backend, apis, prompt management, distributed computing. All core prompts & chains are managed declaratively in jsonnet (and not hidden in classes)
If you download the latest artifact from BuildaAndRun Action, and cd into Script folder, Execution of this command :- java -jar flyfly.jar jbang Flyopenaiwiki.java Edgechain.jar is not working in linux.
Flyfly is executing java -cp jbang.jar dev.jbang.Main --cp Edgechain.jar Flyopenaiwiki.java and then in next step executing java -classpath classPath MainClass
check FlySpring/flyfly/src/main/java/com/flyspring/flyfly/commands/jbang/JbangCommand.java
This process works only in cmd/powershell [windows]
Automate these two processes just like it is for Windows in JbangCommand.java, making sure that Flyfly detects the OS and executes the right method(s).
If you download the latest artifact from BuildaAndRun Action, and cd into Script folder, Execution of this command :-
java -jar flyfly.jar jbang Flyopenaiwiki.java Edgechain.jar
is not working in linux.Flyfly is executing
java -cp jbang.jar dev.jbang.Main --cp Edgechain.jar Flyopenaiwiki.java
and then in next step executingjava -classpath classPath MainClass
checkFlySpring/flyfly/src/main/java/com/flyspring/flyfly/commands/jbang/JbangCommand.java
This process works only in cmd/powershell [windows]
For Linux, this method works:-
java -cp jbang.jar dev.jbang.Main --cp Edgechain.jar Flyopenaiwiki.java
Automate these two processes just like it is for Windows in JbangCommand.java, making sure that Flyfly detects the OS and executes the right method(s).