minimaxir / simpleaichat

Python package for easily interfacing with chat apps, with robust features and minimal code complexity.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

console script interactive chat doesn't support args

adammarples opened this issue · comments

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.