It's open source under the AGPL license, so you can self-host it. Happy to discuss identity resolution, the epistemic model (observations to entities to claims), and answer questions.
It's a waterfall sequence of hard identifiers such as email, LinkedIn URL, domain, and CRM ID and it only accepts exact matches and does not use fuzzy search. This approach works for most situations.
If there is still no match, the system creates a new entity instead of making an incorrect guess.
The most recent observation is used as the claim. If there are conflicting observations, each one lowers the confidence score, but the newest still takes priority. The only exception is that CRM fields follow their own priority order. The human-entered data comes first, followed by enriched data, then inferred data. For all other cases, the newest observation is used.
CRMs are built for humans to update records. Nous is built for AI agents to read and write context. It stores observations, derives claims, tracks confidence and freshness, and gives agents one API instead of making them coordinate multiple tools.
It's open source under the AGPL license, so you can self-host it. Happy to discuss identity resolution, the epistemic model (observations to entities to claims), and answer questions.
How are you solving identity resolution? What happens when two people share a name at the same company?
It's a waterfall sequence of hard identifiers such as email, LinkedIn URL, domain, and CRM ID and it only accepts exact matches and does not use fuzzy search. This approach works for most situations. If there is still no match, the system creates a new entity instead of making an incorrect guess.
How do you handle conflicting facts from two sources when you are extracting the observations?
The most recent observation is used as the claim. If there are conflicting observations, each one lowers the confidence score, but the newest still takes priority. The only exception is that CRM fields follow their own priority order. The human-entered data comes first, followed by enriched data, then inferred data. For all other cases, the newest observation is used.
how is this different from just giving my agent access to my CRM?
CRMs are built for humans to update records. Nous is built for AI agents to read and write context. It stores observations, derives claims, tracks confidence and freshness, and gives agents one API instead of making them coordinate multiple tools.
so I would still need a CRM but agents would use the context graph?
Exactly, CRM is for your business records and the context graph is for aligning your agent!