-
Notifications
You must be signed in to change notification settings - Fork 0
/
.metadata_hash.json.example
47 lines (47 loc) · 1.85 KB
/
.metadata_hash.json.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "Autonolas Mech Quickstart",
"description": "The mech executes AI tasks requested on-chain and delivers the results to the requester.",
"inputFormat": "ipfs-v0.1",
"outputFormat": "ipfs-v0.1",
"image": "https://gateway.autonolas.tech/ipfs/bafybeidzpenez565d7vp7jexfrwisa2wijzx6vwcffli57buznyyqkrceq",
"tools": [
"claude-prediction-online"
],
"toolMetadata": {
"claude-prediction-offline": {
"name": "Claude Prediction Offline",
"description": "Makes a prediction using Claude",
"input": {
"type": "text",
"description": "The text to make a prediction on"
},
"output": {
"type": "object",
"description": "A JSON object containing the prediction and confidence",
"schema": {
"type": "object",
"properties": {
"requestId": {
"type": "integer",
"description": "Unique identifier for the request"
},
"result": {
"type": "string",
"description": "Result information in JSON format as a string",
"example": "{\n \"p_yes\": 0.6,\n \"p_no\": 0.4,\n \"confidence\": 0.8,\n \"info_utility\": 0.6\n}"
},
"prompt": {
"type": "string",
"description": "The prompt used to make the prediction."
}
},
"required": [
"requestId",
"result",
"prompt"
]
}
}
}
}
}