forgeant docs-test-0
Build LLM-powered agents in C++
Loading...
Searching...
No Matches
response.hpp
Go to the documentation of this file.
1#ifndef FORGEANT_PROVIDER_RESPONSE_HPP
2#define FORGEANT_PROVIDER_RESPONSE_HPP
3
5#include <string>
6
7namespace forgeant {
8
9struct Usage {
10 int input_tokens = 0;
12};
13
20
21} // namespace forgeant
22
23#endif // FORGEANT_PROVIDER_RESPONSE_HPP
Definition agent.hpp:25
Definition response.hpp:14
std::string model
Definition response.hpp:18
Message message
Definition response.hpp:15
Usage usage
Definition response.hpp:17
std::string finish_reason
Definition response.hpp:16
Definition message.hpp:11
Definition response.hpp:9
int output_tokens
Definition response.hpp:11
int input_tokens
Definition response.hpp:10