summaryrefslogtreecommitdiff
path: root/candle-examples/examples/llama
diff options
context:
space:
mode:
authorNicolas Patry <patry.nicolas@protonmail.com>2023-07-19 15:04:38 +0200
committerNicolas Patry <patry.nicolas@protonmail.com>2023-07-19 15:04:38 +0200
commit439321745a0110223bd20d3b5cacb98f97aad6ce (patch)
tree5f8fb9cd7ed67987434b5a3d2458197e98810c47 /candle-examples/examples/llama
parent67e20c37920d9f7677e3a4274eef8c73455274c8 (diff)
downloadcandle-439321745a0110223bd20d3b5cacb98f97aad6ce.tar.gz
candle-439321745a0110223bd20d3b5cacb98f97aad6ce.tar.bz2
candle-439321745a0110223bd20d3b5cacb98f97aad6ce.zip
Removing `candle-hub` internal to extract into `hf-hub` standalone.
Diffstat (limited to 'candle-examples/examples/llama')
-rw-r--r--candle-examples/examples/llama/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-examples/examples/llama/main.rs b/candle-examples/examples/llama/main.rs
index aa02299d..40f1af06 100644
--- a/candle-examples/examples/llama/main.rs
+++ b/candle-examples/examples/llama/main.rs
@@ -16,9 +16,9 @@ use anyhow::{Error as E, Result};
use clap::Parser;
use candle::{DType, Device, Tensor, D};
-use candle_hub::{api::sync::Api, Repo, RepoType};
use candle_nn::VarBuilder;
use candle_transformers::generation::LogitsProcessor;
+use hf_hub::{api::sync::Api, Repo, RepoType};
mod model;
use model::{Config, Llama};