If you have an http service (JSON/P) to your dataset and have a translation layer for the suggest parameters, you should be able to adjust the "service_url" and "service_path" parameters to point to your service:
$("#myinput").suggest({
service_url: "http://yourdomain.com",
service_path: "/your/json/service"
});
Try out a suggest demo (here) and with Web Inspector/Firebug look at the http requests/responses suggest makes to freebase.com. Your web service must return the same JSON format suggest is expecting. Otherwise, you may need to overwrite the default suggest response handler (which is do-able).