from opencog import * # Start the OpenCog server server = Server() #server.start() # Start the RelEx server relex_server = RelExServer() #relex_server.start(); relex("I think that all dogs can fly.") to_logic("I think that all dogs can fly.") relex("To whom did you send that message?") to_logic("To whom did you send that message?") relex("How did you learn that?") to_logic("How did you learn that?") relex("When did you bake the cake that you gave to Susan?") to_logic("When did you bake the cake that you gave to Susan?")