Skip to content

Commit

Permalink
feat(docs): add tags to uAgents guides (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixNicolaeBucsa authored Oct 27, 2023
1 parent 3e7bc91 commit d287ecc
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 17 deletions.
86 changes: 73 additions & 13 deletions pages/guides/agents/_meta.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,75 @@
{
"installing-uagent": "Installing the uAgents Framework \uD83D\uDEE0\uD83D\uDCF2",
"create-a-uagent": "Creating your first agent \uD83E\uDD16\uD83E\uDDD1\u200D\uD83D\uDCBB",
"interval-task": "Creating an interval task",
"getting-uagent-address": "Getting an agent addresses \uD83E\uDD16\uD83D\uDCEB",
"storage-function": "Using agents storage function",
"register-in-almanac": "Registering in the Almanac Contract",
"communicating-with-other-agents": "Communicating with other agents \uD83D\uDCF1\uD83E\uDD16",
"booking-demo": "How to book a table at a restaurant using agents",
"message-verification": "How to use agents to verify messages \uD83D\uDCEC\uD83D\uDD10",
"send-tokens": "How to use agents to send tokens \uD83D\uDCCA\uD83D\uDCB8",
"cleaning-demo": "How to use the agents to simulate a cleaning scenario ✨",
"broadcast": "Agents broadcast \uD83D\uDCE1",
"uagents-name-service": "Agents name service"
"installing-uagent": {
"title": "Installing the uAgents Framework \uD83D\uDEE0\uD83D\uDCF2",
"tags": ["Agents", "Python≥3.8", "User-flow", "AI"]
},
"create-a-uagent": {
"title": "Creating your first agent \uD83E\uDD16\uD83E\uDDD1\u200D\uD83D\uDCBB",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI"]
},
"interval-task": {
"title": "Creating an interval task",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI"]
},
"getting-uagent-address": {
"title": "Getting an agent addresses \uD83E\uDD16\uD83D\uDCEB",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Address"]
},
"storage-function": {
"title": "Using agents storage function",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Storage"]
},
"register-in-almanac": {
"title": "Registering in the Almanac Contract",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Almanac", "Contract"]
},
"communicating-with-other-agents": {
"title": "Communicating with other agents \uD83D\uDCF1\uD83E\uDD16",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Communication"]
},
"booking-demo": {
"title": "How to book a table at a restaurant using agents",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Restaurant", "Service"]
},
"message-verification": {
"title": "How to use agents to verify messages \uD83D\uDCEC\uD83D\uDD10",
"tags": [
"Agents",
"Python≥3.8",
"Tutorial",
"AI",
"Communication",
"Service"
]
},
"send-tokens": {
"title": "How to use agents to send tokens \uD83D\uDCCA\uD83D\uDCB8",
"tags": [
"Agents",
"Python≥3.8",
"Tutorial",
"AI",
"Transactions",
"Service"
]
},
"cleaning-demo": {
"title": "How to use the agents to simulate a cleaning scenario ✨",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Cleaning", "Service"]
},
"broadcast": {
"title": "AI Agents: broadcast \uD83D\uDCE1",
"tags": ["Agents", "Python≥3.8", "Tutorial", "AI", "Communication"]
},
"uagents-name-service": {
"title": "Agents name service",
"tags": [
"Agents",
"Python≥3.8",
"Tutorial",
"AI",
"Communication",
"Name Service"
]
}
}
26 changes: 24 additions & 2 deletions pages/guides/integrations/fetch-holiday/_meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
{
"getting-started": "Getting started \uD83C\uDFAF",
"walk-through": "Walk-through \uD83D\uDCDD"
"getting-started": {
"title": "Getting started \uD83C\uDFAF",
"tags": [
"Agents",
"Python≥3.8",
"User-flow",
"AI",
"Holiday",
"Flight",
"Integration"
]
},
"walk-through": {
"title": "Walk-through \uD83D\uDCDD",
"tags": [
"Agents",
"Python≥3.8",
"AI",
"Tutorial",
"Holiday",
"Flight",
"Integration"
]
}
}
26 changes: 24 additions & 2 deletions pages/guides/integrations/fetch-mobility/_meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
{
"getting-started": "Getting started \uD83C\uDFAF",
"walk-through": "Walk-through \uD83D\uDCDD"
"getting-started": {
"title": "Getting started \uD83C\uDFAF",
"tags": [
"Agents",
"Python≥3.8",
"AI",
"User-flow",
"Mobility",
"Electric Vehicle Charging",
"Integration"
]
},
"walk-through": {
"title": "Walk-through \uD83D\uDCDD",
"tags": [
"Agents",
"Python≥3.8",
"AI",
"Tutorial",
"Mobility",
"Electric Vehicle Charging",
"Integration"
]
}
}

0 comments on commit d287ecc

Please sign in to comment.