documentation about multiline mode

This commit is contained in:
Vivian Fang
2023-10-18 13:06:14 -07:00
parent 9a1b8fe3a4
commit 51fa71623a
2 changed files with 3 additions and 0 deletions

View File

@@ -118,6 +118,8 @@ python main.py --human me.txt
While using MemGPT via the CLI you can run various commands:
```text
//
enter multiline input mode (type // again when done)
/exit
exit the CLI
/save

View File

@@ -106,6 +106,7 @@ async def main():
if user_input.startswith('/'):
if user_input == "//":
print("Entering multiline mode, type // when done")
user_input_list = []
while True:
user_input = console.input("[bold cyan]>[/bold cyan] ")