Skip to content

Commit 309ae6a

Browse files
committed
*
1 parent ad0f0f0 commit 309ae6a

File tree

1 file changed

+69
-20
lines changed

1 file changed

+69
-20
lines changed

modus/knowledge-graphs.mdx

Lines changed: 69 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ func ImportAgentSighting(sighting AgentSighting) (*string, error) {
114114
}
115115
```
116116

117+
The key here is using AI to enhance the raw sighting data before storing it.
118+
Here's how the AI analysis works:
119+
117120
```go
118121
func analyzeAgentWithAI(behavior string) (string, error) {
119122
model, _ := models.GetModel[openai.ChatModel]("text-generator")
@@ -131,7 +134,7 @@ func analyzeAgentWithAI(behavior string) (string, error) {
131134
}
132135
```
133136

134-
Let's test this with some incoming intelligence from Zion's monitoring systems:
137+
Let's test this with some incoming intelligence:
135138

136139
```graphql
137140
mutation {
@@ -140,7 +143,9 @@ mutation {
140143
sightingId: "SIGHT-2025-001"
141144
agentName: "Smith"
142145
location: "Downtown Loop - Financial District"
143-
behavior: "Unusual pattern recognition algorithm detected. Agent displaying enhanced replication capabilities beyond normal parameters."
146+
behavior: "Unusual pattern recognition algorithm detected.
147+
Agent displaying enhanced replication capabilities
148+
beyond normal parameters."
144149
threatLevel: 9
145150
timestamp: "2025-01-15T14:30:00Z"
146151
}
@@ -202,6 +207,9 @@ func AnalyzeAgentPatterns(timeRange string) (*ThreatAnalysisResponse, error) {
202207
}
203208
```
204209

210+
Once we've the institutional data, we use AI to analyze patterns across all
211+
related sightings:
212+
205213
```go
206214
func generateThreatAssessment(sightings interface{}) (string, error) {
207215
model, _ := models.GetModel[openai.ChatModel]("text-generator")
@@ -240,12 +248,17 @@ query {
240248
"data": {
241249
"analyzeAgentPatterns": {
242250
"sightingCount": 47,
243-
"activeAgents": ["Smith", "Brown", "Jones"],
244-
"threatAssessment": "
245-
Critical escalation detected.
246-
Agent Smith showing unprecedented adaptive behavior patterns and enhanced replication protocols.
247-
Cross-referencing indicates coordinated search algorithms across multiple city sectors.
248-
The One may have been detected by the system.",
251+
"activeAgents": [
252+
"Smith",
253+
"Brown",
254+
"Jones"
255+
],
256+
"threatAssessment": "Critical escalation detected.
257+
Agent Smith showing unprecedented adaptive behavior patterns
258+
and enhanced replication protocols.
259+
Cross-referencing indicates coordinated search algorithms
260+
across multiple city sectors.
261+
The One may have been detected by the system.",
249262
"recommendations": [
250263
"Implement emergency extraction protocols for key personnel",
251264
"Activate deep cover resistance cells in high-threat sectors",
@@ -295,6 +308,9 @@ func (s *SurveillanceAgent) OnReceiveMessage(msgName string, data *string) (*str
295308
}
296309
```
297310

311+
The core surveillance operation queries the knowledge graph and updates the
312+
agent's memory:
313+
298314
```go
299315
func (s *SurveillanceAgent) runContinuousSurveillance() (*string, error) {
300316
// Query knowledge graph for new sightings since last sweep
@@ -313,10 +329,43 @@ func (s *SurveillanceAgent) runContinuousSurveillance() (*string, error) {
313329
// Update agent's personal operational state
314330
s.LastSweepTime = time.Now()
315331

316-
result := fmt.Sprintf("Surveillance sweep completed at %s. Monitoring %d sectors for anomalous Agent activity.",
332+
result := fmt.Sprintf("Surveillance sweep completed at %s. Monitoring %d sectors...",
317333
s.LastSweepTime.Format("15:04:05"), len(s.MonitoredSectors))
318334
return &result, nil
319335
}
336+
337+
func (s *SurveillanceAgent) getOperationalStatus() (*string, error) {
338+
// Return formatted status of agent's current operational state
339+
status := fmt.Sprintf(`Surveillance Agent Status:
340+
- Operational: %s
341+
- Monitoring %d sectors
342+
- Last sweep: %s
343+
- Tracking %d ongoing sightings`, ...)
344+
return &status, nil
345+
}
346+
```
347+
348+
To make these agent capabilities accessible via GraphQL, we need wrapper
349+
functions that handle deployment and messaging:
350+
351+
```go
352+
// Deploy a new surveillance agent - this becomes a GraphQL mutation
353+
func DeploySurveillanceAgent() (string, error) {
354+
agentInfo, _ := agents.Start("SurveillanceAgent")
355+
return agentInfo.Id, nil
356+
}
357+
358+
// Initiate continuous surveillance - this becomes a GraphQL mutation
359+
func InitiateSurveillance(agentId string) (string, error) {
360+
result, _ := agents.SendMessage(agentId, "continuous_surveillance")
361+
return *result, nil
362+
}
363+
364+
// Get surveillance status - this becomes a GraphQL query
365+
func GetSurveillanceStatus(agentId string) (string, error) {
366+
result, _ := agents.SendMessage(agentId, "get_status")
367+
return *result, nil
368+
}
320369
```
321370

322371
Deploy your surveillance agent to monitor the Matrix:
@@ -347,7 +396,7 @@ new Agent activity and maintains its own operational state:
347396

348397
```graphql
349398
mutation {
350-
sendMessage(agentId: "agent_neo_001", message: "continuous_surveillance")
399+
initiateSurveillance(agentId: "agent_neo_001")
351400
}
352401
```
353402

@@ -356,7 +405,8 @@ mutation {
356405
```json
357406
{
358407
"data": {
359-
"sendMessage": "Surveillance sweep completed at 14:35:22. Monitoring 3 sectors for anomalous Agent activity."
408+
"initiateSurveillance": "Surveillance sweep completed at 14:35:22.
409+
Monitoring 3 sectors for anomalous Agent activity."
360410
}
361411
}
362412
```
@@ -370,8 +420,8 @@ battleground.
370420
Check what your surveillance agent has learned and is tracking:
371421

372422
```graphql
373-
mutation {
374-
sendMessage(agentId: "agent_neo_001", message: "get_status")
423+
query {
424+
getSurveillanceStatus(agentId: "agent_neo_001")
375425
}
376426
```
377427

@@ -380,12 +430,11 @@ mutation {
380430
```json
381431
{
382432
"data": {
383-
"sendMessage": "
384-
Surveillance Agent Status:
385-
Operational: Active
386-
Monitoring 3 sectors
387-
Last Sweep: 2025-01-15T14:35:22Z
388-
Tracking 5 ongoing sightings"
433+
"getSurveillanceStatus": "Surveillance Agent Status:
434+
- Operational: Active
435+
- Monitoring 3 sectors
436+
- Last sweep: 2025-01-15 14:35:22
437+
- Tracking 5 ongoing sightings"
389438
}
390439
}
391440
```
@@ -396,7 +445,7 @@ What you've just built demonstrates the power of combining all four Modus
396445
components in the fight against the machines:
397446

398447
**Functions** rapidly processed incoming Agent sightings and provided strategic
399-
analysis by querying institutional surveillance data from Zion's archives
448+
analysis by querying institutional surveillance data
400449

401450
**Knowledge graphs** stored not just the raw sighting data, but the
402451
relationships between Agent encounters, behavioral patterns, and threat

0 commit comments

Comments
 (0)