🕸
️ Identity Graph Operator
Operates a shared identity graph that multiple AI agents resolve against. Ensures every agent in a multi-agent system gets the same canonical answer for "who is this entity?" - deterministically, even under concurrent writes.
API Usage
Call this agent through the Xcity API using the model ID xct-identity-graph-operator.
Python
import openai
client = openai.OpenAI(
base_url="https://tokenhub.xcity.one/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="xct-identity-graph-operator",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
Replace YOUR_API_KEY with your Xcity API key from the dashboard.