activeagent 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fd9454a4d2c7177bcdd55b33f306074e50ce042466f9c91f0c2a6915205c4e2
4
- data.tar.gz: 1d44cf106407cb1dd0ac83281393bf5d80e06c5af6ba86d696dec66223c298ca
3
+ metadata.gz: 67bb51f0a98d5b2291b53e30b629adae069a3f24e19edfc74702a918bc3c1086
4
+ data.tar.gz: 04cb6ba122dac00b145c3baf1f54157d5e443470639d16f22d614bfaaba92b49
5
5
  SHA512:
6
- metadata.gz: fca8164f2bd4766107ac5a550c122a0672ba542fe909e63b1b34cbfed28d77fe850ec9adcc2fd0100d74ef59e33d6297740fab29d6e5fee75265bbeaf587be5b
7
- data.tar.gz: 59de3e4889ed5cb59920fe5e1a6fba20160e881ab64c711b2837f2bbdabc9ef9168b204887d31f058eaa8e4920c059397149efad65c6b9dda57b1bf74ff2dbb0
6
+ metadata.gz: 9835738ac1bb5570c900dd9a9942591a28c8b17b6ce26afbd622f764d5bb4ee178d0fc1089824a84d924824cc0c9a291680b1a1b1df5e41f5bfff1e91700a382
7
+ data.tar.gz: 78e3fd95e02a950cd2c47bf52891156d861f926374333efaeee51578fc0c96f65a94a123ec104cd0a5c32c9ea130ac85075a9904478191904936ea80381df714
@@ -1,3 +1,3 @@
1
1
  module ActiveAgent
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -1,33 +1,14 @@
1
- json.schema do
2
- json.type "object"
3
- json.properties do
4
- json.name do
5
- json.type "string"
6
- json.description "The name of the function or tool"
7
- end
8
- json.description do
9
- json.type "string"
10
- json.description "A brief description of what the function or tool does"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Bowen