1
0
Fork 0
mirror of https://gitlab.com/niansa/libjustlm.git synced 2025-03-06 20:49:17 +01:00
libjustlm/test.cpp
2023-03-30 07:03:33 -05:00

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;
}