Skip to content

feat: use schema in autoquery #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Jun 2, 2025
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ flamegraph.svg
log.log
.DS_Store

*.html
src/tests/dump-test
config-dev.yaml
*.html
105 changes: 95 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ serde-big-array = "0.5.1"
debug_panic = "0.2.1"
dedent = "0.1.1"
hnsw2 = { path = "./crates/hnsw2" }
repair_json = "0.1.0"
async-openai = "0.28.0"

orama-js-pool = "0.1.1"
Expand All @@ -119,6 +118,7 @@ rustls = "0.23.26"
filters = { path = "./crates/filters" }

zebo = "0.1.2"
llm_json = "1.0.2"

[build-dependencies]
cc = "1"
Expand Down Expand Up @@ -163,7 +163,4 @@ reader = []
test-mem-alloc = []

[workspace]
members = [
"crates/hnsw2",
"crates/filters",
]
members = ["crates/hnsw2", "crates/filters"]
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Not using networks as they seems to break on WSLv2
version: "3.8"

services:
oramacore:
Expand Down
Loading
Loading