forgeant docs-test-0
Build LLM-powered agents in C++
Loading...
Searching...
No Matches
chat_request.hpp
Go to the documentation of this file.
1#ifndef FORGEANT_PROVIDER_CHAT_REQUEST_HPP
2#define FORGEANT_PROVIDER_CHAT_REQUEST_HPP
3
6#include <optional>
7#include <span>
8
9namespace forgeant {
10
12 std::span<const ToolView> tools;
13 std::optional<Json> output_schema;
14};
15
16} // namespace forgeant
17
18#endif // FORGEANT_PROVIDER_CHAT_REQUEST_HPP
Definition agent.hpp:25
Definition chat_request.hpp:11
std::span< const ToolView > tools
Definition chat_request.hpp:12
std::optional< Json > output_schema
Definition chat_request.hpp:13