Compare commits
3 Commits
f40f6c6ba7
...
d2a394cec2
Author | SHA1 | Date | |
---|---|---|---|
d2a394cec2 | |||
27d5dac208 | |||
ddd6f37118 |
@ -60,7 +60,6 @@ pub fn c_feed_watch(c: &Context) {
|
|||||||
|
|
||||||
if check_cid == false && { prompt.is_empty() == false || com.is_empty() == false } {
|
if check_cid == false && { prompt.is_empty() == false || com.is_empty() == false } {
|
||||||
println!("{}", handle);
|
println!("{}", handle);
|
||||||
|
|
||||||
if c.bool_flag("debug") == true {
|
if c.bool_flag("debug") == true {
|
||||||
println!(
|
println!(
|
||||||
"cid:{}\nuri:{}\ncid_root:{}\nuri_root:{}\nhost:{}\ndid:{}\ncheck_cid:{}",
|
"cid:{}\nuri:{}\ncid_root:{}\nuri_root:{}\nhost:{}\ndid:{}\ncheck_cid:{}",
|
||||||
|
@ -146,7 +146,7 @@ fn main() {
|
|||||||
)
|
)
|
||||||
.command(
|
.command(
|
||||||
Command::new("delete")
|
Command::new("delete")
|
||||||
.description("d <rkey>")
|
.description("d <rkey> -c <collection>")
|
||||||
.alias("d")
|
.alias("d")
|
||||||
.action(delete)
|
.action(delete)
|
||||||
.flag(
|
.flag(
|
||||||
@ -358,15 +358,12 @@ fn refresh(_c: &Context) {
|
|||||||
let session = session::get_request().await;
|
let session = session::get_request().await;
|
||||||
if session == "err" {
|
if session == "err" {
|
||||||
let res = refresh::post_request().await;
|
let res = refresh::post_request().await;
|
||||||
println!("{}", res);
|
|
||||||
if res == "err" {
|
if res == "err" {
|
||||||
let m = data_toml(&"handle");
|
let m = data_toml(&"handle");
|
||||||
let p = data_toml(&"password");
|
let p = data_toml(&"password");
|
||||||
let s = data_toml(&"host");
|
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;
|
let res = token::post_request(m.to_string(), p.to_string(), s.to_string()).await;
|
||||||
w_cfg(&s, &res, &p);
|
w_cfg(&s, &res, &p);
|
||||||
println!("res:{}", res);
|
|
||||||
} else {
|
} else {
|
||||||
w_refresh(&res);
|
w_refresh(&res);
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ pub async fn post_request(prompt: String) -> String {
|
|||||||
";
|
";
|
||||||
|
|
||||||
let post = Some(json!({
|
let post = Some(json!({
|
||||||
"model": "gpt-3.5-turbo",
|
"model": "gpt-4o-mini",
|
||||||
"messages": [
|
"messages": [
|
||||||
{"role": "system", "content": &setting.to_string()},
|
{"role": "system", "content": &setting.to_string()},
|
||||||
{"role": "user", "content": &prompt.to_string()},
|
{"role": "user", "content": &prompt.to_string()},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user