forgeant docs-test-0
Build LLM-powered agents in C++
Loading...
Searching...
No Matches
run_overrides.hpp
Go to the documentation of this file.
1#ifndef FORGEANT_AGENT_RUN_OVERRIDES_HPP
2#define FORGEANT_AGENT_RUN_OVERRIDES_HPP
3
4#include <optional>
5#include <string>
6
7namespace forgeant {
8
10 std::optional<std::string> system_prompt;
11 std::optional<int> max_iterations;
12};
13
14} // namespace forgeant
15
16#endif // FORGEANT_AGENT_RUN_OVERRIDES_HPP
Definition agent.hpp:25
Definition run_overrides.hpp:9
std::optional< std::string > system_prompt
Definition run_overrides.hpp:10
std::optional< int > max_iterations
Definition run_overrides.hpp:11