-
Notifications
You must be signed in to change notification settings - Fork 85
Modify \llm to use either + or - modifiers. #227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
amjith
wants to merge
8
commits into
main
Choose a base branch
from
amjith/llm-improvements
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
32efa7b
Rename succinct to nocontext.
amjith 8432311
Modify \llm to use either + or - modifiers.
amjith 3454357
Fix up the `\llm` verbose, regular and succinct modes.
amjith c24aa2c
Rename CommandMode to Verbosity.
amjith a38cfbf
Make llm library a dependency.
amjith 1efcd02
Update changelog.
amjith db36a04
Update tests.
amjith 4722caa
Remove unused variables.
amjith File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
from collections import namedtuple | ||
|
||
from . import export | ||
from enum import Enum | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
@@ -36,12 +37,32 @@ class CommandNotFound(Exception): | |
pass | ||
|
||
|
||
class Verbosity(Enum): | ||
"""Mode for special command invocation: regular, verbose (+), or succinct (-).""" | ||
|
||
REGULAR = "regular" | ||
VERBOSE = "verbose" | ||
SUCCINCT = "succinct" | ||
|
||
|
||
@export | ||
def parse_special_command(sql): | ||
command, _, arg = sql.partition(" ") | ||
verbose = "+" in command | ||
command = command.strip().replace("+", "") | ||
return (command, verbose, arg.strip()) | ||
""" | ||
Parse a special command prefix, extracting the base command name, | ||
an invocation mode (regular, verbose, or succinct), and the argument. | ||
""" | ||
raw, _, arg = sql.partition(" ") | ||
is_verbose = raw.endswith("+") | ||
is_succinct = raw.endswith("-") | ||
# strip out any + or - modifiers to get the actual command name | ||
command = raw.strip().rstrip("+-") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We may need to be strict here to check command == Following are some cases >>> raw ="llm+-"
>>> raw.strip().rstrip("+-")
'llm'
>>> raw ="llm*"
>>> raw.strip().rstrip("+-")
'llm*' |
||
if is_verbose: | ||
mode = Verbosity.VERBOSE | ||
elif is_succinct: | ||
mode = Verbosity.SUCCINCT | ||
else: | ||
mode = Verbosity.REGULAR | ||
return (command, mode, arg.strip()) | ||
|
||
|
||
@export | ||
|
@@ -101,7 +122,7 @@ def execute(cur, sql): | |
"""Execute a special command and return the results. If the special command | ||
is not supported a KeyError will be raised. | ||
""" | ||
command, verbose, arg = parse_special_command(sql) | ||
command, mode, arg = parse_special_command(sql) | ||
|
||
if (command not in COMMANDS) and (command.lower() not in COMMANDS): | ||
raise CommandNotFound | ||
|
@@ -116,7 +137,7 @@ def execute(cur, sql): | |
if special_cmd.arg_type == NO_QUERY: | ||
return special_cmd.handler() | ||
elif special_cmd.arg_type == PARSED_QUERY: | ||
return special_cmd.handler(cur=cur, arg=arg, verbose=verbose) | ||
return special_cmd.handler(cur=cur, arg=arg, verbose=(mode is Verbosity.VERBOSE)) | ||
elif special_cmd.arg_type == RAW_QUERY: | ||
return special_cmd.handler(cur=cur, query=sql) | ||
|
||
|
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we validate for
llm+-
and other invalid/unsupported commands?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What did you have in mind? I could see someone calling
\llm* Question
or\llm= Question
. It'll just ignore unknown chars and treat them as regular verbosity.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to cover two cases: more than 1 special character and unknown special character. Ideally, incorrect usage should not pass silently. What do you think?