Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cda7b11
Basic version of flutter app runs to display bottom navigation bar
Ok3ks Jan 17, 2026
f9c480d
Settings Page for Acho
Ok3ks Jan 17, 2026
21c3f9e
implement u.i in flutter
Ok3ks Jan 17, 2026
47ec215
Merge branch 'main' into start-flutter
Ok3ks Jan 17, 2026
97aaf81
Merge pull request #16 from HAKSOAT/start-flutter
Ok3ks Jan 17, 2026
cc134ed
WIP, implement indexing for local pdf documents
Ok3ks Jan 20, 2026
c19bc37
Scan pdf files, and update android permissions
Ok3ks Jan 20, 2026
422be7e
Integrate flutter_rust_bridge with Flutter
Ok3ks Jan 20, 2026
2a5a75a
WIP flutter_rust_bridge integration
Ok3ks Jan 20, 2026
85eb8ff
update to keyword_search
Ok3ks Jan 20, 2026
b3b1c9f
issues using flutter_code_gen due to missing cpu features
Ok3ks Jan 20, 2026
ea105e5
attempt at using flutter_rust bridge
Ok3ks Jan 22, 2026
89422cb
attempt at connecting flutter_rust_bridge
Ok3ks Jan 22, 2026
5aececb
Setup inference
HAKSOAT Jan 26, 2026
284bde1
WIP embed seekstorm
Ok3ks Jan 27, 2026
a87acff
Remove flutter tantivy
Ok3ks Jan 27, 2026
e172caf
Revert "Remove flutter tantivy"
Ok3ks Jan 27, 2026
feef239
implement keyword search with tantivy
Ok3ks Jan 27, 2026
540f965
functional keyword search
Ok3ks Jan 27, 2026
ae989f7
Added build and download scripts
HAKSOAT Jan 27, 2026
ea4a3ea
remove keyword search rs
Ok3ks Jan 28, 2026
c85ff43
dart format
Ok3ks Jan 28, 2026
2277349
Merge pull request #17 from HAKSOAT/start-flutter-2
Ok3ks Jan 28, 2026
59dd9b8
Merge pull request #18 from HAKSOAT/haksoat/initial_inference
Ok3ks Jan 28, 2026
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: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ target
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Python related files
__pycache__/
.venv/
1,313 changes: 1,313 additions & 0 deletions .idea/caches/deviceStreaming.xml

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions .idea/deviceManager.xml

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

5 changes: 5 additions & 0 deletions .idea/misc.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

118 changes: 118 additions & 0 deletions .idea/workspace.xml

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

1 change: 1 addition & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'scripts/watch.justfile'
import 'scripts/clean.justfile'
import 'scripts/android.justfile'
import 'scripts/onnx.justfile'


# Alias
Expand Down
Loading