@valon-technologies/gestalt 0.0.1-alpha.31 → 0.0.1-alpha.32
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/package.json +1 -1
- package/src/runtime.ts +1 -1
package/package.json
CHANGED
package/src/runtime.ts
CHANGED
|
@@ -875,7 +875,7 @@ function providerRequest(
|
|
|
875
875
|
function providerRequestToolRefs(
|
|
876
876
|
requestContext?: ProtoRequestContext,
|
|
877
877
|
): AgentToolRef[] {
|
|
878
|
-
return requestContext?.toolRefs
|
|
878
|
+
return requestContext?.toolRefs?.map(agentToolRefFromProto) ?? [];
|
|
879
879
|
}
|
|
880
880
|
|
|
881
881
|
function providerHTTPSubjectRequest(
|