activeagent 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67bb51f0a98d5b2291b53e30b629adae069a3f24e19edfc74702a918bc3c1086
|
4
|
+
data.tar.gz: 04cb6ba122dac00b145c3baf1f54157d5e443470639d16f22d614bfaaba92b49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9835738ac1bb5570c900dd9a9942591a28c8b17b6ce26afbd622f764d5bb4ee178d0fc1089824a84d924824cc0c9a291680b1a1b1df5e41f5bfff1e91700a382
|
7
|
+
data.tar.gz: 78e3fd95e02a950cd2c47bf52891156d861f926374333efaeee51578fc0c96f65a94a123ec104cd0a5c32c9ea130ac85075a9904478191904936ea80381df714
|
data/lib/active_agent/version.rb
CHANGED
@@ -1,33 +1,14 @@
|
|
1
|
-
json.
|
2
|
-
|
3
|
-
json.
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
end
|
12
|
-
json.parameters do
|
13
|
-
json.type "object"
|
14
|
-
json.properties do
|
15
|
-
json.each do |parameter|
|
16
|
-
json.name do
|
17
|
-
json.type "string"
|
18
|
-
json.description "The name of the parameter"
|
19
|
-
end
|
20
|
-
json.type do
|
21
|
-
json.type "string"
|
22
|
-
json.description "The data type of the parameter"
|
23
|
-
end
|
24
|
-
json.required do
|
25
|
-
json.type "boolean"
|
26
|
-
json.description "Whether the parameter is required"
|
27
|
-
end
|
28
|
-
end
|
1
|
+
json.type :function
|
2
|
+
json.function do
|
3
|
+
json.name action_name
|
4
|
+
json.description "TODO: Write a description for this action"
|
5
|
+
json.parameters do
|
6
|
+
json.type :object
|
7
|
+
json.properties do
|
8
|
+
json.param_name do
|
9
|
+
json.type :string
|
10
|
+
json.description "The param_description"
|
29
11
|
end
|
30
12
|
end
|
31
13
|
end
|
32
|
-
json.required ["name", "description", "parameters"]
|
33
14
|
end
|