Skip to content

Commit 8312e51

Browse files
committed
expose the --instructions flag to the use
1 parent 8ce4b48 commit 8312e51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/chatdbg/util/config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class ChatDBGConfig(Configurable):
5353
tag = Unicode(_chatdbg_get_env("tag", ""), help="Any extra info for log file").tag(
5454
config=True
5555
)
56+
5657
rc_lines = Unicode(
5758
_chatdbg_get_env("rc_lines", "[]"), help="lines to run at startup"
5859
).tag(config=True)
@@ -90,10 +91,10 @@ class ChatDBGConfig(Configurable):
9091

9192
instructions = Unicode(
9293
_chatdbg_get_env("instructions", ""),
93-
help="the File for the instructions, or '' for the default version.",
94+
help="The file for the initial instructions to the LLM, or '' for the default (possibly-model specific) version.",
9495
).tag(config=True)
9596

96-
_user_configurable = [debug, log, model, no_stream, format]
97+
_user_configurable = [debug, log, model, instructions, no_stream, format]
9798

9899
def _parser(self):
99100
parser = DBGParser(add_help=False)

0 commit comments

Comments
 (0)