NeuralNine / neuralintents

A simple interface for working with intents and chatbots.
MIT License
249 stars 135 forks source link

Please add how to get responses in readme file #14

Open FATCAT47 opened 3 years ago

FATCAT47 commented 3 years ago

I can code my own function that randomizes response based on tag but it would be easier to use yours. The issue is I'm having trouble figuring out what to pass instead of "messages".

FATCAT47 commented 3 years ago

It's this easy to get random greeting responses but it would be messy

` import random import json

json = json.loads(open("intents.json").read())

greetings = json["intents"][0]["responses"]

result = random.choice(greetings)

print(result) `