Hi
I want to be able to execute python code via direct script, I use the docker deployment same as in this post: Docker and Python Engine
Sadly the folder /camunda/lib does not exist, same for the /camunda/webapps/camunda/META-INF/maven/
pom.xml
Where did these paths go?
After adding jython.jar, how would I go and add a pip module? for example
I simply want to make api requests to gemini API.
EDIT: seems like that would be not possible due to jython only going till python2.7 where genai module is not available.
is it possible to add an npm module to the, according to the docs included graalvm javascript?
According to google it’s possible to add this code if using maven, this looks similar like the pom file, but where do I need to add this snipped in the camunda docker container? (Gemini API – Kurzanleitung | Google AI for Developers)
<dependencies>
<dependency>
<groupId>com.google.genai</groupId>
<artifactId>google-genai</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
Essentially either python, javascript or java, one of the has to work, no?