Skip to content

Commit c28b5bd

Browse files
authored
Merge pull request #63 from rmusser01/dev
Sync
2 parents e550001 + 4eff3bb commit c28b5bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+6090
-3371
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install pytest
29+
pip install pytest pytest_asyncio hypothesis
3030
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3131
- name: Test with pytest
3232
run: |

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Current status: Working/In-Progress
2626
- Launch with `python3 -m tldw_chatbook.app` (working on pip packaging)
2727
- Inspiration from [Elia Chat](https://github.com/darrenburns/elia)
2828

29+
#### Chat Features
2930
<details>
3031
<summary> Chat Features </summary>
3132

@@ -57,6 +58,7 @@ Current status: Working/In-Progress
5758
- Support for searchingloading/editing/saving Notes from the Notes Database.
5859
</details>
5960
61+
#### Notes & Media Features
6062
<details>
6163
<summary> Notes & Media Features </summary>
6264
@@ -75,7 +77,7 @@ Current status: Working/In-Progress
7577
-
7678
</details>
7779
78-
80+
#### Local LLM Management Features
7981
<details>
8082
<summary> Local LLM Inference </summary>
8183
File renamed without changes.
File renamed without changes.

Tests/Sync/test_sync_client-2.py renamed to STests/Sync/test_sync_client-2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
import requests
1616

17-
from tldw_cli.tldw_app.DB.Media_DB import Database, DatabaseError
17+
from tldw_chatbook.DB.Client_Media_DB_v2 import MediaDatabase as Database, DatabaseError
1818

1919
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
2020

21-
from tldw_cli.tldw_app.DB.Sync_Client import ClientSyncEngine, SYNC_BATCH_SIZE # Your client sync engine
21+
from tldw_chatbook.DB.Sync_Client import ClientSyncEngine, SYNC_BATCH_SIZE # Your client sync engine
2222

2323

2424

File renamed without changes.
File renamed without changes.
File renamed without changes.

Tests/ChaChaNotesDB/test_chachanotes_db.py

Lines changed: 258 additions & 629 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)