Skip to content

Commit

Permalink
Merge branch 'main' of github.com:plasma-umass/ChatDBG
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfreund committed May 24, 2024
2 parents 24ed5d8 + 5d54133 commit 7d707bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "ChatDBG"
version = "0.6.3"
version = "0.6.4"
authors = [
{ name="Emery Berger", email="[email protected]" },
{ name="Stephen Freund", email="[email protected]" },
Expand Down
5 changes: 3 additions & 2 deletions src/chatdbg/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class ChatDBGConfig(Configurable):
tag = Unicode(_chatdbg_get_env("tag", ""), help="Any extra info for log file").tag(
config=True
)

rc_lines = Unicode(
_chatdbg_get_env("rc_lines", "[]"), help="lines to run at startup"
).tag(config=True)
Expand Down Expand Up @@ -90,10 +91,10 @@ class ChatDBGConfig(Configurable):

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

_user_configurable = [debug, log, model, no_stream, format]
_user_configurable = [debug, log, model, instructions, no_stream, format]

def _parser(self):
parser = DBGParser(add_help=False)
Expand Down

0 comments on commit 7d707bd

Please sign in to comment.