JiriOndrusek commented on code in PR #24473:
URL: https://github.com/apache/camel/pull/24473#discussion_r3549844066
##########
components/camel-ai/camel-ai-tool/src/main/java/org/apache/camel/component/ai/tools/AiTool.java:
##########
@@ -14,15 +14,22 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.apache.camel.dsl.jbang.core.commands.tui;
+package org.apache.camel.component.ai.tools;
-import java.util.Iterator;
+/**
+ * Constants for the AI Tool component.
+ *
+ * @since 4.22
+ */
+public final class AiTool {
+
+ public static final String SCHEME = "ai-tool";
-/** Picocli tab-completion candidates for {@code --theme}. */
-public class ThemeModeCompletionCandidates implements Iterable<String> {
+ /**
+ * Exchange variable name under which {@link AiToolArguments} is set by
the executor.
+ */
+ public static final String TOOL_ARGUMENTS = "AiToolArguments";
Review Comment:
We should probably use CamelXxx format. The proper variable name should be
`CamelAiToolArguments.`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]