1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
d2a394cec2
fix help
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
2024-11-08 08:14:41 +09:00
27d5dac208
update gpt-4o-mini 2024-11-08 08:14:40 +09:00
ddd6f37118
fix check cid 2024-11-08 08:14:40 +09:00
3 changed files with 2 additions and 6 deletions

View File

@ -60,7 +60,6 @@ pub fn c_feed_watch(c: &Context) {
if check_cid == false && { prompt.is_empty() == false || com.is_empty() == false } {
println!("{}", handle);
if c.bool_flag("debug") == true {
println!(
"cid:{}\nuri:{}\ncid_root:{}\nuri_root:{}\nhost:{}\ndid:{}\ncheck_cid:{}",

View File

@ -146,7 +146,7 @@ fn main() {
)
.command(
Command::new("delete")
.description("d <rkey>")
.description("d <rkey> -c <collection>")
.alias("d")
.action(delete)
.flag(
@ -358,15 +358,12 @@ fn refresh(_c: &Context) {
let session = session::get_request().await;
if session == "err" {
let res = refresh::post_request().await;
println!("{}", res);
if res == "err" {
let m = data_toml(&"handle");
let p = data_toml(&"password");
let s = data_toml(&"host");
println!("handle:{}, pass:{}, host:{}", m, p, s);
let res = token::post_request(m.to_string(), p.to_string(), s.to_string()).await;
w_cfg(&s, &res, &p);
println!("res:{}", res);
} else {
w_refresh(&res);
}

View File

@ -33,7 +33,7 @@ pub async fn post_request(prompt: String) -> String {
";
let post = Some(json!({
"model": "gpt-3.5-turbo",
"model": "gpt-4o-mini",
"messages": [
{"role": "system", "content": &setting.to_string()},
{"role": "user", "content": &prompt.to_string()},