Business Integrations
Read business systems in natural language — built on the API-agent foundation, read-only by default.
from neuroagent import ShopifyIntegration, SalesforceIntegration, OdooIntegration, SAPIntegration
shopify = ShopifyIntegration("my-store", access_token="shpat_...")
print(shopify.list_products(limit=10))
salesforce = SalesforceIntegration("https://acme.my.salesforce.com", access_token="...")
print(salesforce.query("SELECT Id, Name FROM Account LIMIT 5"))
odoo = OdooIntegration("https://acme.odoo.com", db="acme", username="admin", password="...")
print(odoo.search_read("res.partner", fields=["name", "email"]))
# Or hand any integration an LLM and ask in plain English:
agent = shopify.agent(provider="openai")
print(agent.ask("Which product has the most inventory?").content)
| Integration | Transport |
|---|---|
ShopifyIntegration | Admin REST API |
SalesforceIntegration | REST / SOQL |
OdooIntegration | JSON-RPC execute_kw / search_read |
SAPIntegration | OData v2/v4, OAuth or basic auth |
NeuroAgent AI