blob: b72a4c6d0a99847f908be391121b6ffa47c4baf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <chrono>
#include <string>
#define DEFAULT_LOCALE_ID "english"
#ifdef DEBUG_MODE
const std::string DEFAULT_PREFIX = "~";
#else
const std::string DEFAULT_PREFIX = "!";
#endif
const auto START_TIME = std::chrono::steady_clock::now();
#define MARKOV_RESPONSE_CHANCE 1
|