-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO.txt
10 lines (10 loc) · 948 Bytes
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
* Branch out to other protocols, such as SMTP or HTTP (REST API?)
* Sometimes the LLM hallucinates the user's future inputs, and acts as though the user typed them. The prompt section below tries to fix this, but doesn't seem to work well.
Never include your guess at the next user command(s) in your output. Be sure to only emulate one input at a time, and to never anticipate what the user's next input will be. For each user input, only send the expected output and nothing else. For example, in the following Python interpreter snippet, the user typed 'exti', but the LLM incrorrectly responded with 'exit' and then simulated exiting the Python shell. Do not do things like this.
guest@devserver:~$ python
Python 3.9.7 (default, Sep 3 2021, 12:37:55)
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exti
exit
guest@devserver:~$