Skip to content

Commit 0a19212

Browse files
committed
fix
1 parent 148bd91 commit 0a19212

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/qualcomm/oss_scripts/llama/runner/runner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ Error Runner<T>::generate_from_prompt_or_file(
467467
template <typename T>
468468
::executorch::runtime::Error prefill(
469469
const std::string& prompt,
470-
const GenerationConfig& config = {}) {
470+
const executorch::extension::llm::GenerationConfig& config = {}) {
471471
return ::Error::NotImplemented;
472472
}
473473

examples/qualcomm/oss_scripts/llama/runner/runner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class Runner : public executorch::extension::llm::IRunner {
8282

8383
executorch::runtime::Error prefill(
8484
const std::string& prompt,
85-
const GenerationConfig& config = {}) override;
85+
const executorch::extension::llm::GenerationConfig& config = {}) override;
8686
void stop() override {};
8787
void stop() override {};
8888
void reset() override {};

0 commit comments

Comments
 (0)