Add missing includes, update readme

This commit is contained in:
Aaron Po
2026-04-11 13:46:35 -04:00
parent bcfde856fe
commit f07d48f810
4 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Biergarten Pipeline
Biergarten Pipeline is a C++23 command-line tool that reads a local city list, resolves contextual enrichment for each sampled city through an injected service, and generates brewery names and descriptions. The current code samples up to four locations per run, then uses either Gemma 4 or the mock generator to produce the output.
Biergarten Pipeline is a C++20 command-line tool that reads a local city list, resolves contextual enrichment for each sampled city through an injected service, and generates brewery names and descriptions. The current code samples up to four locations per run, then uses either Gemma 4 or the mock generator to produce the output.
## Tested Hardware & OS

View File

@@ -54,7 +54,7 @@ class BiergartenDataGenerator {
/**
* @brief Load locations from JSON and sample cities.
*
* @return Vector of sampled locations capped at 30 entries.
* @return Vector of sampled locations capped at 4 entries.
*/
static std::vector<Location> QueryCitiesWithCountries();

View File

@@ -6,7 +6,9 @@
* @brief Shared helper APIs used by LlamaGenerator translation units.
*/
#include <cstddef>
#include <string>
#include <string_view>
#include <utility>
struct llama_model;

View File

@@ -7,6 +7,7 @@
#include <algorithm>
#include <filesystem>
#include <iterator>
#include <random>
#include "biergarten_data_generator.h"