-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/i chat bot interface #3019
Merged
randaz81
merged 12 commits into
robotology:master
from
elandini84:feature/IChatBot_interface
Sep 18, 2023
Merged
Feature/i chat bot interface #3019
randaz81
merged 12 commits into
robotology:master
from
elandini84:feature/IChatBot_interface
Sep 18, 2023
Conversation
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
New interface for interacting with chatbots. This is just a generic one that do not take advantages of "implementation-specific" features. It just allows to set the bot language and to interact with it.
The yarp/src/devices CMakeLists file has been updated too
elandini84
added
PR Type: Feat/Enh
This PR adds some new feature or enhances some part of YARP
Component: Devices
Target: YARP v3.9.0
labels
Sep 12, 2023
elandini84
requested review from
randaz81,
traversaro and
Nicogene
as code owners
September 12, 2023 11:54
randaz81
previously approved these changes
Sep 12, 2023
Changed files accordingly to the suggestions given by the reviewer. Removed also unnecessary port from IChatBotMsgsImpl.
elandini84
temporarily deployed
to
code-analysis
September 12, 2023 15:38 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 12, 2023 15:38 — with
GitHub Actions
Inactive
elandini84
had a problem deploying
to
code-analysis
September 12, 2023 15:38 — with
GitHub Actions
Failure
randaz81
had a problem deploying
to
code-analysis
September 14, 2023 15:06 — with
GitHub Actions
Error
randaz81
had a problem deploying
to
code-analysis
September 14, 2023 15:06 — with
GitHub Actions
Error
randaz81
had a problem deploying
to
code-analysis
September 14, 2023 15:06 — with
GitHub Actions
Error
randaz81
reviewed
Sep 14, 2023
randaz81
reviewed
Sep 14, 2023
randaz81
reviewed
Sep 14, 2023
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 08:59 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 08:59 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 08:59 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 15:02 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 15:02 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 15, 2023 15:02 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 18, 2023 12:18 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 18, 2023 12:18 — with
GitHub Actions
Inactive
elandini84
temporarily deployed
to
code-analysis
September 18, 2023 12:18 — with
GitHub Actions
Inactive
SonarCloud Quality Gate failed. 0 Bugs 41.2% Coverage The version of Java (11.0.3) you have used to run this analysis is deprecated and we will stop accepting it soon. Please update to at least Java 17. Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
IChatBot
Added a
yarp
interface
to interact with chatbots. It allows to send messages and receive answers and to manage the bot language.This does not features "implementation-specific" functionalities that could benefit the user but are not universally available among the various chatbot that can be found online. The idea is to open new PR in the future with new interfaces derived from
yarp::dev::IChatBot
that will model different "classes" ofchatbots (an example on how chatbots can be classified, can be found in this article: A critical review of state-of-the-art chatbot designs and applications)