Skip to content

Commit

Permalink
Merge branch 'main' into 20240402-falcon-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeantonio21 committed Apr 3, 2024
2 parents c57713d + eff8f1a commit ce3fd00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
- name: Install cargo-lints
run: cargo install cargo-lints
- name: Clippy check (with lints)
run: cargo lints clippy --all-targets --all-features
run: cargo lints clippy --all-targets
4 changes: 2 additions & 2 deletions atoma-inference/src/models/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl ModelConfig {

let api_key = std::env::var("API_KEY").expect("Failed to retrieve api key, from .env file");
let flush_storage = std::env::var("FLUSH_STORAGE")
.expect("Failed to retrieve flush storage variable, from .env file")
.unwrap_or_default()
.parse()
.unwrap();
let models = serde_json::from_str(
Expand All @@ -83,7 +83,7 @@ impl ModelConfig {
.parse()
.unwrap();
let tracing = std::env::var("TRACING")
.expect("Failed to retrieve tracing variable, from .env file")
.unwrap_or_default()
.parse()
.unwrap();

Expand Down

0 comments on commit ce3fd00

Please sign in to comment.