add css as a embeddable file type in which the entire file is embedded individually
This commit is contained in:
parent
1362c5a3d9
commit
f0bf60fded
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ const CODE_CONTEXT_TEMPLATE: &str =
|
||||||
"The below code snippet is from file '<path>'\n\n```<language>\n<item>\n```";
|
"The below code snippet is from file '<path>'\n\n```<language>\n<item>\n```";
|
||||||
const ENTIRE_FILE_TEMPLATE: &str =
|
const ENTIRE_FILE_TEMPLATE: &str =
|
||||||
"The below snippet is from file '<path>'\n\n```<language>\n<item>\n```";
|
"The below snippet is from file '<path>'\n\n```<language>\n<item>\n```";
|
||||||
pub const PARSEABLE_ENTIRE_FILE_TYPES: [&str; 3] = ["TOML", "YAML", "JSON"];
|
pub const PARSEABLE_ENTIRE_FILE_TYPES: [&str; 4] = ["TOML", "YAML", "JSON", "CSS"];
|
||||||
|
|
||||||
pub struct CodeContextRetriever {
|
pub struct CodeContextRetriever {
|
||||||
pub parser: Parser,
|
pub parser: Parser,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue