-
Notifications
You must be signed in to change notification settings - Fork 13
feat: conversation database #1045
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
Changes from 17 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
588e41e
feat(convDatabase): add sqlalchemy and alembic
clementb49 2b59aa7
feat(convDatabase): implement a first version of the conversation dat…
clementb49 6387ac4
chore: ignore claude code settings
clementb49 12c19c1
refactor(convDatabase): optimize subsequent save query
clementb49 d8c4e82
feat(convDatabase): add settings and private mode
clementb49 6dbdc7e
refactor(convDatabase): manage database singleton inside wx app singl…
clementb49 2837b76
refactor(convDatabase): optimize database manager code
clementb49 7416c7c
fix(convDatabase): code review comment
clementb49 c9a5144
fix(convDatabase): use correct method name
clementb49 4fbfd0e
fix(convDatabase): disable btn when no conversation history is selected
clementb49 908f26e
Merge remote-tracking branch 'origin/master' into convDatabase
clementb49 7474845
fix(build_exe): add missing package for sqlalchemy and alembic
clementb49 ebe5538
feat: move alembic version in resource dir to simplify fhrozen version
clementb49 f17512c
fix(frozenAPP): move alembic dir in resource
clementb49 35eb5d5
style: fix docstring
clementb49 87d0795
fix: address review findings across database, GUI, and test layers
clementb49 6b0d02f
Merge remote-tracking branch 'origin/master' into convDatabase
clementb49 9a1f3f9
feat(database): add cleanup_orphan_attachments to reclaim orphaned blobs
clementb49 ca85b9b
test(conversation): reduce setup duplication across database and conv…
clementb49 e1be4a3
fix: save draft prompt after model and account selection
clementb49 cdc3d6b
chore: remove claude file
clementb49 92d4ace
Merge remote-tracking branch 'origin/master' into convDatabase
clementb49 e66f1bc
fix: flush the draft before closing tab
clementb49 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "permissions": { | ||
| "allow": [ | ||
| "Bash(uv run:*)" | ||
| ] | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| """Database package for conversation persistence.""" | ||
|
|
||
| from .manager import ConversationDatabase | ||
|
|
||
| __all__ = ["ConversationDatabase"] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: SigmaNight/basiliskLLM
Length of output: 473
Accidental commit of a local developer config — should be gitignored.
.claude/settings.local.jsonis a machine-local Claude AI permissions override. The.localsuffix follows the standard convention for non-shared configs (analogous to.env.local). Committing it adds noise to version control and may cause conflicts for other contributors with different local settings.Add it to
.gitignoreand remove it from the PR:🤖 Prompt for AI Agents