-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BIGTOP-4260: Add chatbot command and tools (#101)
- Loading branch information
Showing
9 changed files
with
257 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
...p-manager-server/src/main/java/org/apache/bigtop/manager/server/enums/ChatbotCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.server.enums; | ||
|
||
import lombok.Getter; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
@Getter | ||
public enum ChatbotCommand { | ||
INFO("info"), | ||
SEARCH("search"), | ||
HELP("help"); | ||
|
||
private final String cmd; | ||
|
||
ChatbotCommand(String cmd) { | ||
this.cmd = cmd; | ||
} | ||
|
||
public static List<String> getAllCommands() { | ||
List<String> commands = new ArrayList<>(); | ||
for (ChatbotCommand command : ChatbotCommand.values()) { | ||
commands.add(command.cmd); | ||
} | ||
return commands; | ||
} | ||
|
||
public static ChatbotCommand getCommand(String cmd) { | ||
for (ChatbotCommand command : ChatbotCommand.values()) { | ||
if (command.cmd.equals(cmd)) { | ||
return command; | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
public static ChatbotCommand getCommandFromMessage(String message) { | ||
if (message.startsWith("/")) { | ||
String[] parts = message.split(" "); | ||
return getCommand(parts[0].substring(1)); | ||
} | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...r-server/src/main/java/org/apache/bigtop/manager/server/tools/AiServiceToolsProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.bigtop.manager.server.tools; | ||
|
||
import org.apache.bigtop.manager.server.enums.ChatbotCommand; | ||
|
||
import dev.langchain4j.service.tool.ToolProvider; | ||
import dev.langchain4j.service.tool.ToolProviderRequest; | ||
import dev.langchain4j.service.tool.ToolProviderResult; | ||
|
||
public class AiServiceToolsProvider implements ToolProvider { | ||
|
||
ChatbotCommand chatbotCommand; | ||
|
||
public AiServiceToolsProvider(ChatbotCommand chatbotCommand) { | ||
this.chatbotCommand = chatbotCommand; | ||
} | ||
|
||
public AiServiceToolsProvider() { | ||
this.chatbotCommand = null; | ||
} | ||
|
||
@Override | ||
public ToolProviderResult provideTools(ToolProviderRequest toolProviderRequest) { | ||
if (chatbotCommand.equals(ChatbotCommand.INFO)) { | ||
ClusterInfoTools clusterInfoTools = new ClusterInfoTools(); | ||
return ToolProviderResult.builder().addAll(clusterInfoTools.list()).build(); | ||
} | ||
return null; | ||
} | ||
} |
Oops, something went wrong.