biblemate 0.0.21__py3-none-any.whl → 0.0.22__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- biblemate/README.md +49 -7
- biblemate/main.py +1 -0
- {biblemate-0.0.21.dist-info → biblemate-0.0.22.dist-info}/METADATA +50 -8
- {biblemate-0.0.21.dist-info → biblemate-0.0.22.dist-info}/RECORD +7 -7
- {biblemate-0.0.21.dist-info → biblemate-0.0.22.dist-info}/WHEEL +0 -0
- {biblemate-0.0.21.dist-info → biblemate-0.0.22.dist-info}/entry_points.txt +0 -0
- {biblemate-0.0.21.dist-info → biblemate-0.0.22.dist-info}/top_level.txt +0 -0
biblemate/README.md
CHANGED
@@ -61,21 +61,63 @@ How to swap?
|
|
61
61
|
* Enter `.chat` in BibleMate AI prompt to enable chat mode and disable agent mode.
|
62
62
|
* Enter `.agent` in BibleMate AI prompt to enable agent mode and disable chat mode.
|
63
63
|
|
64
|
-
##
|
64
|
+
## Manual Tool Selection
|
65
65
|
|
66
|
+
In some cases, you may want to specify a particular tool for a simple task, rather than having a tool automatically selected in the fully automatic `agent mode`.
|
66
67
|
|
68
|
+
You can specify a single tool by prefixing a tool name with `@` at the beginning of your prompt. For example,
|
67
69
|
|
68
|
-
|
70
|
+
```
|
71
|
+
@retrieve_bible_cross_references Deut 6:4; John 3:16
|
72
|
+
```
|
73
|
+
|
74
|
+
Watch this video: https://youtu.be/50m1KRj6uhs
|
75
|
+
|
76
|
+
## Custom Master Plan with Multiple Tools
|
69
77
|
|
70
|
-
|
78
|
+
In some cases, you may want to specify a `custom plan` with multiple tools specified for different steps for a complex task, rather than having a `master plan` automatically generated in fully automatic agent mode.
|
71
79
|
|
72
|
-
|
80
|
+
You can use a custom 'Master Plan' of your own, instead of one generated by BibleMate AI. To do this, start your BibleMate AI prompt with '@@' followed by your own master plan for a Bible study. For example,
|
73
81
|
|
74
|
-
|
82
|
+
```
|
83
|
+
@@ Analyze John 3:16 with the following steps:
|
84
|
+
1. Call tool 'retrieve_english_bible_verses' for Bible text,
|
85
|
+
2. Call tool 'retrieve_bible_cross_references' for Bible cross-references,
|
86
|
+
3. Call tool 'interpret_new_testament_verse' for interpretation, and
|
87
|
+
4. Call tool 'write_bible_theology' to explain its theology.
|
88
|
+
```
|
75
89
|
|
76
|
-
|
90
|
+
Watch this video: https://youtu.be/Lejq0sAx030
|
91
|
+
|
92
|
+
The '@@' trick works even when you are using 'chat' mode with 'agent' mode disabled.
|
93
|
+
|
94
|
+
## Action Menu
|
77
95
|
|
78
|
-
|
96
|
+
There is a set of predefined entries, that starts with a dot sign `.`:
|
97
|
+
|
98
|
+
- `.new` - new conversation
|
99
|
+
- `.quit` - quit
|
100
|
+
- `.backend` - change backend
|
101
|
+
- `.chat` - enable chat mode
|
102
|
+
- `.agent` - enable agent mode
|
103
|
+
- `.tools` - list available tools
|
104
|
+
- `.backup` - backup conversation
|
105
|
+
- `.open` - open a file or directory, e.g. `.open /home/user/report.html`
|
106
|
+
|
107
|
+
## Keyboard Shortcuts
|
108
|
+
|
109
|
+
The following key bindings are supported in BibleMate AI prompt field:
|
110
|
+
|
111
|
+
- `Ctrl+N` new conversation
|
112
|
+
- `Ctrl+Q` quit
|
113
|
+
- `Ctrl+C` copy selected prompt text
|
114
|
+
- `Ctrl+V` paste text in a prompt
|
115
|
+
- `Ctrl+I` or `TAB` new line
|
116
|
+
- `Ctrl+Z` clear prompt text
|
117
|
+
- `Esc+a` jump to the beginning of a prompt
|
118
|
+
- `Esc+z` jump to the end of a prompt
|
119
|
+
- `Esc+b` or `HOME` jump to the beginning of a line in a prompt
|
120
|
+
- `Esc+e` or `END` jump to the end of a line in a prompt
|
79
121
|
|
80
122
|
## License
|
81
123
|
|
biblemate/main.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: biblemate
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.22
|
4
4
|
Summary: BibleMate AI - Automate Your Bible Study
|
5
5
|
Home-page: https://toolmate.ai
|
6
6
|
Author: Eliran Wong
|
@@ -94,21 +94,63 @@ How to swap?
|
|
94
94
|
* Enter `.chat` in BibleMate AI prompt to enable chat mode and disable agent mode.
|
95
95
|
* Enter `.agent` in BibleMate AI prompt to enable agent mode and disable chat mode.
|
96
96
|
|
97
|
-
##
|
97
|
+
## Manual Tool Selection
|
98
98
|
|
99
|
+
In some cases, you may want to specify a particular tool for a simple task, rather than having a tool automatically selected in the fully automatic `agent mode`.
|
99
100
|
|
101
|
+
You can specify a single tool by prefixing a tool name with `@` at the beginning of your prompt. For example,
|
100
102
|
|
101
|
-
|
103
|
+
```
|
104
|
+
@retrieve_bible_cross_references Deut 6:4; John 3:16
|
105
|
+
```
|
106
|
+
|
107
|
+
Watch this video: https://youtu.be/50m1KRj6uhs
|
108
|
+
|
109
|
+
## Custom Master Plan with Multiple Tools
|
102
110
|
|
103
|
-
|
111
|
+
In some cases, you may want to specify a `custom plan` with multiple tools specified for different steps for a complex task, rather than having a `master plan` automatically generated in fully automatic agent mode.
|
104
112
|
|
105
|
-
|
113
|
+
You can use a custom 'Master Plan' of your own, instead of one generated by BibleMate AI. To do this, start your BibleMate AI prompt with '@@' followed by your own master plan for a Bible study. For example,
|
106
114
|
|
107
|
-
|
115
|
+
```
|
116
|
+
@@ Analyze John 3:16 with the following steps:
|
117
|
+
1. Call tool 'retrieve_english_bible_verses' for Bible text,
|
118
|
+
2. Call tool 'retrieve_bible_cross_references' for Bible cross-references,
|
119
|
+
3. Call tool 'interpret_new_testament_verse' for interpretation, and
|
120
|
+
4. Call tool 'write_bible_theology' to explain its theology.
|
121
|
+
```
|
108
122
|
|
109
|
-
|
123
|
+
Watch this video: https://youtu.be/Lejq0sAx030
|
124
|
+
|
125
|
+
The '@@' trick works even when you are using 'chat' mode with 'agent' mode disabled.
|
126
|
+
|
127
|
+
## Action Menu
|
110
128
|
|
111
|
-
|
129
|
+
There is a set of predefined entries, that starts with a dot sign `.`:
|
130
|
+
|
131
|
+
- `.new` - new conversation
|
132
|
+
- `.quit` - quit
|
133
|
+
- `.backend` - change backend
|
134
|
+
- `.chat` - enable chat mode
|
135
|
+
- `.agent` - enable agent mode
|
136
|
+
- `.tools` - list available tools
|
137
|
+
- `.backup` - backup conversation
|
138
|
+
- `.open` - open a file or directory, e.g. `.open /home/user/report.html`
|
139
|
+
|
140
|
+
## Keyboard Shortcuts
|
141
|
+
|
142
|
+
The following key bindings are supported in BibleMate AI prompt field:
|
143
|
+
|
144
|
+
- `Ctrl+N` new conversation
|
145
|
+
- `Ctrl+Q` quit
|
146
|
+
- `Ctrl+C` copy selected prompt text
|
147
|
+
- `Ctrl+V` paste text in a prompt
|
148
|
+
- `Ctrl+I` or `TAB` new line
|
149
|
+
- `Ctrl+Z` clear prompt text
|
150
|
+
- `Esc+a` jump to the beginning of a prompt
|
151
|
+
- `Esc+z` jump to the end of a prompt
|
152
|
+
- `Esc+b` or `HOME` jump to the beginning of a line in a prompt
|
153
|
+
- `Esc+e` or `END` jump to the end of a line in a prompt
|
112
154
|
|
113
155
|
## License
|
114
156
|
|
@@ -1,15 +1,15 @@
|
|
1
|
-
biblemate/README.md,sha256=
|
1
|
+
biblemate/README.md,sha256=0xKiXqwB-WBxHCKyUByD-2Yre0zgflTDun-wYc9o-J0,6173
|
2
2
|
biblemate/__init__.py,sha256=aFO4_EperOrwwDBdrkTKfDMt2Fh18Y0A2G_nUC_cmmM,78
|
3
3
|
biblemate/bible_study_mcp.py,sha256=lW4pFlfO-98w1yazOIgr2KyWccPFmrNmIReQUEo3--g,16575
|
4
4
|
biblemate/config.py,sha256=ktpLv_5qdbf3FErxUIdCvVc9MO6kQH4Zt_omoJ7msIs,15
|
5
|
-
biblemate/main.py,sha256=
|
5
|
+
biblemate/main.py,sha256=l1auGP_zCkmmTIsGqxh-dArj0lWliLYnqxhHafp9X-w,22258
|
6
6
|
biblemate/package_name.txt,sha256=WkkuEEkgw7EKpXV8GshpzhZlwRor1wpotTS7vP24b_g,9
|
7
7
|
biblemate/requirements.txt,sha256=MliJX2PmogiVmgqHk4W0TMqRp2FLYXcGIkf8PS2RV94,70
|
8
8
|
biblemate/core/systems.py,sha256=nG_NgcLSRhdaHuxuCPN5ZfJUhP88kdfwhRCvRk4RLjI,1874
|
9
9
|
biblemate/ui/info.py,sha256=QRCno0CYUHVoOtVkZIxVamZONmtI7KRmOT2YoUagY5s,811
|
10
10
|
biblemate/ui/prompts.py,sha256=mxdC5BU7NMok9MOm1E39MHSrxB9gSRqGY7HsOc--rRg,3484
|
11
|
-
biblemate-0.0.
|
12
|
-
biblemate-0.0.
|
13
|
-
biblemate-0.0.
|
14
|
-
biblemate-0.0.
|
15
|
-
biblemate-0.0.
|
11
|
+
biblemate-0.0.22.dist-info/METADATA,sha256=_IYAhDnfecbFVrSXVd0-0WEGfs-1cPyRbF_SsKcPuvg,7668
|
12
|
+
biblemate-0.0.22.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
13
|
+
biblemate-0.0.22.dist-info/entry_points.txt,sha256=tbEfTFr6LhPR1E_zP3CsPwJsmG-G4MCnJ3FcQEMiqo0,50
|
14
|
+
biblemate-0.0.22.dist-info/top_level.txt,sha256=pq9uX0tAS0bizZcZ5GW5zIoDLQBa-b5QDlDGsdHNgiU,10
|
15
|
+
biblemate-0.0.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|