@relayfx/sdk 0.0.46 → 0.0.48
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.
- package/dist/ai.js +386 -374
- package/dist/index.js +420 -380
- package/dist/types/relay/client.d.ts +1 -1
- package/package.json +3 -3
|
@@ -42,7 +42,7 @@ export interface RegisterBatonAgentInput {
|
|
|
42
42
|
readonly id: Ids.AgentId;
|
|
43
43
|
readonly address?: Ids.AddressId;
|
|
44
44
|
readonly agent: BatonAgent.Agent<any>;
|
|
45
|
-
readonly model
|
|
45
|
+
readonly model?: Agent.ModelSelection;
|
|
46
46
|
readonly permissions?: ReadonlyArray<Tool.Permission>;
|
|
47
47
|
readonly skill_definition_ids?: ReadonlyArray<Ids.SkillDefinitionId>;
|
|
48
48
|
readonly permission_rules?: Agent.PermissionRuleset;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@relayfx/sdk",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.48",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"typecheck": "bun tsc --noEmit"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@batonfx/core": "0.3.
|
|
29
|
-
"@batonfx/providers": "0.3.
|
|
28
|
+
"@batonfx/core": "0.3.7",
|
|
29
|
+
"@batonfx/providers": "0.3.7",
|
|
30
30
|
"@effect/ai-anthropic": "4.0.0-beta.93",
|
|
31
31
|
"@effect/ai-openai": "4.0.0-beta.93",
|
|
32
32
|
"@effect/ai-openai-compat": "4.0.0-beta.93",
|