Skip to content

Commit

Permalink
Merge pull request #563 from dcSpark/nico/bump_0_8_5
Browse files Browse the repository at this point in the history
bump to 0.8.5
  • Loading branch information
nicarq authored Sep 18, 2024
2 parents e9f139e + 1a4eddb commit e6972b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shinkai-bin/shinkai-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shinkai_node"
version = "0.8.4"
version = "0.8.5"
edition = "2021"
authors.workspace = true
# this causes `cargo run` in the workspace root to run this package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,30 +177,6 @@ impl JobManager {
return Ok(job_id);
}

// // 4.- If a .jobkai file is found, processing job message is taken over by this alternate logic
// let jobkai_found_result = JobManager::should_process_job_files_for_tasks_take_over(
// db.clone(),
// vector_fs.clone(),
// &job_message.job_message,
// llm_provider_found.clone(),
// full_job.clone(),
// job_message.profile.clone(),
// clone_signature_secret_key(&identity_secret_key),
// unstructured_api.clone(),
// ws_manager.clone(),
// llm_stopper.clone(),
// )
// .await;
// let jobkai_found = match jobkai_found_result {
// Ok(found) => found,
// Err(e) => {
// return Self::handle_error(&db, Some(user_profile), &job_id, &identity_secret_key, e, ws_manager).await
// }
// };
// if jobkai_found {
// return Ok(job_id);
// }

// Otherwise proceed forward with rest of logic.
let inference_chain_result = JobManager::process_inference_chain(
db.clone(),
Expand Down

0 comments on commit e6972b8

Please sign in to comment.