1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// cs/ai/gpt/wikipedia.hh
#ifndef CS_AI_GPT_WIKIPEDIA_HH
#define CS_AI_GPT_WIKIPEDIA_HH
#include <string>
#include <vector>
#include "cs/result.hh"
namespace cs::ai::gpt {
cs::ResultOr<std::vector<std::string>>
DownloadMostPopularArticles(unsigned int n);
}
#endif // CS_AI_GPT_WIKIPEDIA_HH