Cleaned up import paths and added more gpt to gitignore

This commit is contained in:
Emile 2021-06-28 19:59:54 +01:00
parent 21fd9fe968
commit 0be88732c6
2 changed files with 9 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
/target /target
.vscode .vscode
gpt/ gpt/
gpt
bot_config.json bot_config.json
fediverse.toml fediverse.toml

View File

@ -3,7 +3,9 @@ use std::{error::Error, process, thread, time::Duration};
use chrono::Local; use chrono::Local;
use rand::Rng; use rand::Rng;
use crate::publish::ConsolePublisher; use crate::{
bot::IzzilisBot, generator::Generator, publish::FediversePublisher, selection::ConsoleSelector,
};
mod bot; mod bot;
mod config; mod config;
@ -45,11 +47,11 @@ fn main() -> Result<(), Box<dyn Error>> {
"1".to_string(), "1".to_string(),
], ],
); );
// let publisher = publish::FediversePublisher::new(cfg.fediverse_base_url())?; let publisher = FediversePublisher::new(cfg.fediverse_base_url())?;
let publisher = ConsolePublisher::new(); // let publisher = ConsolePublisher::new();
let gen = generator::Generator::new(gpt_model); let gen = Generator::new(gpt_model);
let console_selector = selection::ConsoleSelector::new(); let console_selector = ConsoleSelector::new();
let mut bot = bot::IzzilisBot::new(gen, publisher, console_selector); let mut bot = IzzilisBot::new(gen, publisher, console_selector);
bot.generate_samples(); bot.generate_samples();
let cfg_interval = cfg.interval_seconds(); let cfg_interval = cfg.interval_seconds();