Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">

<picture>
<img src="/docs/full_logo.png" alt="HelixDB Logo">
<img src="/assets/full_logo.png" alt="HelixDB Logo">
</picture>

<b>HelixDB</b>: a database built from scratch to be the storage backend for any AI application.
Expand Down
File renamed without changes
File renamed without changes
14 changes: 6 additions & 8 deletions helix-cli/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ use futures_util::StreamExt;
use helix_db::{
helix_engine::traversal_core::config::Config,
helixc::{
analyzer::analyzer::analyze,
analyzer::analyze,
generator::{Source as GeneratedSource, tsdisplay::ToTypeScript},
parser::helix_parser::{Content, HelixParser, HxFile, Source},
parser::{
HelixParser,
types::{Content, HxFile, Source},
},
},
utils::styled_string::StyledString,
};
Expand Down Expand Up @@ -956,12 +959,7 @@ pub fn copy_repo_dir_for_build(src: &std::path::Path, dst: &std::path::Path) ->
if let Some(file_name) = entry.file_name().to_str()
&& matches!(
file_name,
".git"
| ".gitignore"
| ".github"
| ".DS_Store"
| "target"
| "docs"
".git" | ".gitignore" | ".github" | ".DS_Store" | "target" | "docs"
)
{
continue;
Expand Down
2 changes: 0 additions & 2 deletions helix-db/mod.rs

This file was deleted.

19 changes: 0 additions & 19 deletions helix-db/src/helix_engine/README.md

This file was deleted.

150 changes: 0 additions & 150 deletions helix-db/src/helix_engine/bm25/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion helix-db/src/helix_engine/bm25/bm25.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ impl BM25Flatten for HashMap<String, Value> {
.fold(String::with_capacity(self.len() * 4), |mut s, (k, v)| {
s.push_str(k);
s.push(' ');
s.push_str(&v.to_string());
s.push_str(&v.inner_stringify());
s.push(' ');
s
})
Expand Down
3 changes: 0 additions & 3 deletions helix-db/src/helix_engine/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,6 @@ pub mod macros {
#[macro_export]
macro_rules! traversal_remapping {
($remapping_vals:expr, $var_name:expr, $should_spread:expr, $new_name:expr => $traversal:expr) => {{
// TODO: ref?
// Apply remappings to the nested traversal result

let nested_return_value = ReturnValue::from_traversal_value_array_with_mixin(
$traversal,
$remapping_vals.borrow_mut(),
Expand Down
Binary file removed helix-db/src/helix_engine/queryProcess.png
Binary file not shown.
Loading
Loading