You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> <small>[query first and single](https://github.com/ravendb/ravendb-nodejs-client/blob/5c14565d0c307d22e134530c8d63b09dfddcfb5b/test/Ported/QueryTest.ts#L467)</small>
description:"Retrieve all orders sent to a specific country",
827
+
query:"from Orders as O where O.ShipTo.Country == $country select O.Employee, O.Lines.Quantity",
828
+
parametersSampleObject:"{}"
829
+
},
830
+
{
831
+
name:"retrieve-performer-living-region",
832
+
description:"Retrieve an employee's country, city, and region by employee ID",
833
+
query:"from Employees as E where id() == $employeeId select E.Address.Country, E.Address.City, E.Address.Region",
834
+
parametersSampleObject:"{ \"employeeId\": \"embed the employee's ID here\" }"
835
+
}
836
+
],
837
+
// Actions the agent can perform
838
+
actions: [
839
+
{
840
+
name:"store-performer-details",
841
+
description:"Store the employee ID, profit, and suggested reward in the database.",
842
+
parametersSampleObject:"{ \"employeeID\": \"embed the employee's ID here\", \"profit\": \"embed the employee's profit here\", \"suggestedReward\": \"embed your suggestions for a reward here\" }"
> <small>[create an agent](https://github.com/ravendb/ravendb-nodejs-client/blob/f6a223593d16028f8207d0c3da1808744fe47323/test/Ported/Documents/Operations/AiAgentTest.ts#L22-L66)</small>
852
+
> <small>[update an agent](https://github.com/ravendb/ravendb-nodejs-client/blob/f6a223593d16028f8207d0c3da1808744fe47323/test/Ported/Documents/Operations/AiAgentTest.ts#L68-L101)</small>
0 commit comments