Ditto for a SQL Database. I am blown away by this.
> I want you to act as a SQL database. I will type commands and you will reply with what the database should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do no write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in English I will do so by putting text inside curl brackets {like this}. My first command is `SELECT 1`.
> I want you to act as a python3 REPL. I will type commands and you will reply with what the REPL should show. I want you to only reply with the REPL output inside one unique code block, and nothing else. Do no write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in English I will do so by putting text inside curl brackets {like this}. My first command is: print("hello world")
hello world
import sys; print(sys.version)
3.7.2 (default, Dec 29 2019, 22:12:53)
[GCC 8.3.0]
Using a similar prompt to your original I got it to act as a MongoDB database as well. Then took it a step further and asked it to generate SQL INSERT statements and a CREATE TABLE statement for the MongoDB data.
I could get it to give me incorrect results if I made my query complicated enough, but man, it's almost scary how good it is.
All that said, definitely the slowest response times I've ever had for tables/collections that small :)