Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leehuwuj committed Mar 26, 2024
1 parent 46a6345 commit d6184eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion helpers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export type TemplateObservability = "none" | "opentelemetry";
// Config for both file and folder
export type FileSourceConfig = {
paths?: string[];
useLlamaParse?: boolean;
};
export type WebSourceConfig = {
baseUrl?: string;
Expand Down
2 changes: 1 addition & 1 deletion questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ export const askQuestions = async (

if (program.files) {
// If user specified files option, then the program should use context engine
program.engine == "context";
program.engine = "context";
if (!fs.existsSync(program.files)) {
console.log("File or folder not found");
process.exit(1);
Expand Down

0 comments on commit d6184eb

Please sign in to comment.