minimaxir / simpleaichat

Python package for easily interfacing with chat apps, with robust features and minimal code complexity.
MIT License
3.43k stars 224 forks source link

console script interactive chat doesn't support args #49

Closed adammarples closed 11 months ago

adammarples commented 11 months ago

The function for the interactive chat console script doesn't support passing arguments.

def interactive_chat(character=None, character_command=None, prime=True):

I don't think console scripts allow passing kwargs directly to the function. I think sys.argv or argparse is required.

adammarples commented 11 months ago

PR https://github.com/minimaxir/simpleaichat/pull/50