Skip to content

Commit

Permalink
removing random prompt generation
Browse files Browse the repository at this point in the history
  • Loading branch information
antimatter15 authored and anzz1 committed Mar 21, 2023
1 parent bb9d6c7 commit 65f165f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -817,9 +817,9 @@ int main(int argc, char ** argv) {
fprintf(stderr, "%s: seed = %d\n", __func__, params.seed);

std::mt19937 rng(params.seed);
if (params.prompt.empty()) {
params.prompt = gpt_random_prompt(rng);
}
// if (params.prompt.empty()) {
// params.prompt = gpt_random_prompt(rng);
// }

// params.prompt = R"(// this function checks if the number n is prime
//bool is_prime(int n) {)";
Expand Down

0 comments on commit 65f165f

Please sign in to comment.