forgeant docs-test-0
Build LLM-powered agents in C++
Loading...
Searching...
No Matches
tool_view.hpp
Go to the documentation of this file.
1#ifndef FORGEANT_TOOL_TOOL_VIEW_HPP
2#define FORGEANT_TOOL_TOOL_VIEW_HPP
3
5#include <string_view>
6
7namespace forgeant {
8
9struct ToolView {
10 std::string_view name;
11 std::string_view description;
13};
14
15} // namespace forgeant
16
17#endif // FORGEANT_TOOL_TOOL_VIEW_HPP
Definition json.hpp:27
Definition agent.hpp:25
Definition tool_view.hpp:9
const Json & parameters
Definition tool_view.hpp:12
std::string_view name
Definition tool_view.hpp:10
std::string_view description
Definition tool_view.hpp:11