@rudderhq/agent-runtime-gemini-local 0.3.4-canary.13 → 0.3.4-canary.14
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rudderhq/agent-runtime-gemini-local",
|
|
3
|
-
"version": "0.3.4-canary.
|
|
3
|
+
"version": "0.3.4-canary.14",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"typecheck": "tsc --noEmit"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@rudderhq/agent-runtime-utils": "0.3.4-canary.
|
|
70
|
+
"@rudderhq/agent-runtime-utils": "0.3.4-canary.14",
|
|
71
71
|
"picocolors": "^1.1.1"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
@@ -72,9 +72,9 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
|
|
|
72
72
|
| `rudder chat list --org-id <id>` | List chat conversations without dumping full message history. | no | required | no | no |
|
|
73
73
|
| `rudder chat search <query> --org-id <id>` | Search chats with bounded snippets and optional scope filtering. | no | required | no | no |
|
|
74
74
|
| `rudder chat get <chat-id>` | Read one chat conversation record. | no | no | no | no |
|
|
75
|
-
| `rudder chat messages <chat-id
|
|
76
|
-
| `rudder chat transcript <chat-id
|
|
77
|
-
| `rudder chat read <chat-id
|
|
75
|
+
| `rudder chat messages <chat-id> [--limit <n>] [--cursor <cursor>] [--include-transcript]` | Read bounded chat messages with page cursors; transcript output is omitted unless requested. | no | no | no | no |
|
|
76
|
+
| `rudder chat transcript <chat-id> [--limit <n>] [--cursor <cursor>] [--max-output-chars <n>]` | Read paginated chat messages with assistant transcript entries clipped in human output. | no | no | no | no |
|
|
77
|
+
| `rudder chat read <chat-id> [--turn-limit <n>] [--cursor <cursor>] [--include-output]` | Read a bounded recent-message snapshot for one chat with page cursors. | no | no | no | no |
|
|
78
78
|
| `rudder chat create --org-id <id>` | Create a chat conversation. | yes | required | no | attached when available |
|
|
79
79
|
| `rudder chat send <chat-id> --body <text>` | Send a chat message and persist the assistant reply through the server. | yes | no | no | attached when available |
|
|
80
80
|
| `rudder chat archive <chat-id>` | Archive a chat conversation without deleting it. | yes | no | no | attached when available |
|
|
@@ -82,7 +82,7 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
|
|
|
82
82
|
| `rudder runs get <run-id>` | Read one observed run detail. | no | no | no | no |
|
|
83
83
|
| `rudder runs events <run-id>` | List persisted run events. | no | no | no | no |
|
|
84
84
|
| `rudder runs log <run-id>` | Read stored run log content with clipped human output. | no | no | no | no |
|
|
85
|
-
| `rudder runs transcript <run-id
|
|
85
|
+
| `rudder runs transcript <run-id> [--turn-limit <n>] [--cursor <cursor>] [--include-output]` | Read the server-normalized run transcript; human output is compact and JSON includes full entries. | no | no | no | no |
|
|
86
86
|
| `rudder runs errors <run-id>` | List failed tool calls, stderr, runtime failures, and jump-to-context commands. | no | no | no | no |
|
|
87
87
|
| `rudder runs cancel <run-id>` | Cancel a heartbeat run through the governed server route. | yes | no | no | attached when available |
|
|
88
88
|
| `rudder runs retry <run-id>` | Retry a failed, timed out, or cancelled run through the governed server route. | yes | no | no | attached when available |
|