-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Feature/chat management (#11)
* reworking chat data flow * added slash commands with tab complete to msg input for various things like focusing parts of screen, clearing, and saving. * better scrolling on new messages * better session handling * fixed busy status * added session save dialog * updated deps * added ability to copy selected chat message to clipboard *added key combo to chat with selected model on local list * updated readme and help
- Loading branch information
1 parent
efaa531
commit 4ccb883
Showing
21 changed files
with
669 additions
and
345 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -27,3 +27,4 @@ | |
/quantize_workspace/ | ||
/notes.md | ||
/custom_models/ | ||
/chat.md |
This file contains 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 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ pydantic = "*" | |
ollama = "*" | ||
bs4 = "*" | ||
docker = "*" | ||
|
||
textual-fspicker = "*" | ||
|
||
[dev-packages] | ||
mypy = "*" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
__credits__ = ["Paul Robello"] | ||
__maintainer__ = "Paul Robello" | ||
__email__ = "[email protected]" | ||
__version__ = "0.2.4" | ||
__version__ = "0.2.5" | ||
__licence__ = "MIT" | ||
__application_title__ = "PAR LLAMA" | ||
__application_binary__ = "parllama" | ||
|
This file contains 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 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 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 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
Oops, something went wrong.