fakeLLMDevice
: a fake device which implements the ILLM interface for testing purposes.
More...
#include <fake/fakeLLMDevice/FakeLLMDevice.h>
Public Member Functions | |
FakeLLMDevice () | |
yarp::dev::ReturnValue | setPrompt (const std::string &prompt) override |
Performs a question. | |
yarp::dev::ReturnValue | readPrompt (std::string &oPromp) override |
Retrieves the provided prompt. | |
yarp::dev::ReturnValue | ask (const std::string &question, yarp::dev::LLM_Message &oAnswer) override |
Performs a question. | |
yarp::dev::ReturnValue | getConversation (std::vector< yarp::dev::LLM_Message > &oConversation) override |
Retrieves the whole conversation. | |
yarp::dev::ReturnValue | deleteConversation () noexcept override |
Delete the conversation and clear the system context from any internally stored context. | |
yarp::dev::ReturnValue | refreshConversation () noexcept override |
Refresh the conversation. | |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. | |
bool | close () override |
Close the DeviceDriver. | |
![]() | |
virtual | ~ILLM () |
Destructor. | |
![]() | |
DeviceDriver () | |
DeviceDriver (const DeviceDriver &other)=delete | |
DeviceDriver (DeviceDriver &&other) noexcept=delete | |
DeviceDriver & | operator= (const DeviceDriver &other)=delete |
DeviceDriver & | operator= (DeviceDriver &&other) noexcept=delete |
virtual | ~DeviceDriver () |
virtual std::string | id () const |
Return the id assigned to the PolyDriver. | |
virtual void | setId (const std::string &id) |
Set the id for this device. | |
template<class T > | |
bool | view (T *&x) |
Get an interface to the device driver. | |
virtual DeviceDriver * | getImplementation () |
Some drivers are bureaucrats, pointing at others. | |
![]() | |
FakeLLMDevice_ParamsParser () | |
~FakeLLMDevice_ParamsParser () override=default | |
bool | parseParams (const yarp::os::Searchable &config) override |
Parse the DeviceDriver parameters. | |
std::string | getDeviceClassName () const override |
Get the name of the DeviceDriver class. | |
std::string | getDeviceName () const override |
Get the name of the device (i.e. | |
std::string | getDocumentationOfDeviceParams () const override |
Get the documentation of the DeviceDriver's parameters. | |
std::vector< std::string > | getListOfParams () const override |
Return a list of all params used by the device. | |
![]() | |
virtual | ~IDeviceDriverParams () |
Additional Inherited Members | |
![]() | |
const std::string | m_device_classname = {"FakeLLMDevice"} |
const std::string | m_device_name = {"fakeLLMDevice"} |
bool | m_parser_is_strict = false |
const parser_version_type | m_parser_version = {} |
const std::string | m_initial_prompt_defaultValue = {""} |
std::string | m_initial_prompt = {} |
fakeLLMDevice
: a fake device which implements the ILLM interface for testing purposes.
Parameters required by this device are shown in class: FakeLLMDevice_ParamsParser
Definition at line 22 of file FakeLLMDevice.h.
|
inline |
Definition at line 28 of file FakeLLMDevice.h.
|
overridevirtual |
Performs a question.
question | the text of the question provided by the user |
answer | the returned answer |
Implements yarp::dev::ILLM.
Definition at line 38 of file FakeLLMDevice.cpp.
|
overridevirtual |
Close the DeviceDriver.
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 100 of file FakeLLMDevice.cpp.
|
overridevirtualnoexcept |
Delete the conversation and clear the system context from any internally stored context.
Implements yarp::dev::ILLM.
Definition at line 66 of file FakeLLMDevice.cpp.
|
overridevirtual |
Retrieves the whole conversation.
conversation | the conversation |
Implements yarp::dev::ILLM.
Definition at line 60 of file FakeLLMDevice.cpp.
|
overridevirtual |
Open the DeviceDriver.
config | is a list of parameters for the device. Which parameters are effective for your device can vary. See device invocation examples. If there is no example for your device, you can run the "yarpdev" program with the verbose flag set to probe what parameters the device is checking. If that fails too, you'll need to read the source code (please nag one of the yarp developers to add documentation for your device). |
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 94 of file FakeLLMDevice.cpp.
|
overridevirtual |
Retrieves the provided prompt.
prompt | the stored prompt |
Implements yarp::dev::ILLM.
Definition at line 24 of file FakeLLMDevice.cpp.
|
overridevirtualnoexcept |
Refresh the conversation.
Implements yarp::dev::ILLM.
Definition at line 72 of file FakeLLMDevice.cpp.
|
overridevirtual |
Performs a question.
prompt | provides a prompt to the LLM |
Implements yarp::dev::ILLM.
Definition at line 12 of file FakeLLMDevice.cpp.