mirror of
https://gitlab.com/niansa/libjustlm.git
synced 2025-03-06 20:49:17 +01:00
12 lines
301 B
C++
12 lines
301 B
C++
#include "ai.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main() {
|
|
Ai ai;
|
|
std::cout << "Completing \"she replied that\"..." << std::endl;
|
|
std::cout << "Using model " << ai.model_name << "..." << std::endl;
|
|
std::cout << "> she replied that" << ai.complete("she replied that", '\n') << std::endl;
|
|
}
|