YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
ILLMMsgs.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6// Autogenerated by Thrift Compiler (0.14.1-yarped)
7//
8// This is an automatically generated file.
9// It could get re-generated if the ALLOW_IDL_GENERATION flag is on.
10
11#ifndef YARP_THRIFT_GENERATOR_SERVICE_ILLMMSGS_H
12#define YARP_THRIFT_GENERATOR_SERVICE_ILLMMSGS_H
13
14#include <yarp/os/Wire.h>
19
20namespace yarp::dev::llm {
21
22class ILLMMsgs :
23 public yarp::os::Wire
24{
25public:
26 // Constructor
27 ILLMMsgs();
28
29 virtual bool setPrompt(const std::string& prompt);
30
32
33 virtual return_ask ask(const std::string& question);
34
36
37 virtual bool deleteConversation();
38
39 virtual bool refreshConversation();
40
41 // help method
42 virtual std::vector<std::string> help(const std::string& functionName = "--all");
43
44 // read from ConnectionReader
45 bool read(yarp::os::ConnectionReader& connection) override;
46};
47
48} // namespace yarp::dev::llm
49
50#endif // YARP_THRIFT_GENERATOR_SERVICE_ILLMMSGS_H
virtual std::vector< std::string > help(const std::string &functionName="--all")
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
virtual bool setPrompt(const std::string &prompt)
virtual return_ask ask(const std::string &question)
virtual bool refreshConversation()
virtual return_readPrompt readPrompt()
virtual bool deleteConversation()
virtual return_getConversation getConversation()
An interface for reading from a network connection.
Base class for IDL client/server.
Definition Wire.h:18