Connect a Module
To connect with a module within a namespace, do this:
model = c.connect('model')
Once you connected to the model, you can query it as if it was local
response = model.forward(x='yo whadup fam')
View info or schema of the module
model.info() # view all the info of the function
This includes the functions and attributes
View info of the module
model.schema()