http://twgwkbsl36sgd3bcpsnvxaznsfygcp3bt7lk4if3ly2dy5ey7xpx4fqd.onion/p/python-and-ai-development-for-basic-tasks
You can see this in the following python code. import subprocess def generate_post(topic): proc = " ./chat -p 'generate a random guide on " +topic+ " ' " response = subprocess.check_output(proc, shell=True, encoding='utf-8') return(response) topic = input( " Enter a topic: " ) print(generate_post(topic)) As you can see from that simple script we can generate a simple guide and this gets returned in the response.