You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!templateParams.isEmpty() && templateParams.stream().map(TemplateParameterInfo::name).allMatch(Objects::isNull)) {
1371
1366
log.warn(
1372
1367
"The application has been compiled without the '-parameters' being set flag on javac. Make sure your build tool is configured to pass this flag to javac, otherwise Quarkus LangChain4j is unlikely to work properly without it.");
1373
1368
}
1374
1369
1370
+
if ((templateParams.size() == 1) && (params.size() == 1)) {
1371
+
// the special 'it' param is supported when the method only has one parameter
0 commit comments