computer-agents 2.0.0 → 2.1.0
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/ComputerAgentsClient.d.ts +1 -1
- package/dist/cloud/resources/ThreadsResource.d.ts +67 -1
- package/dist/cloud/resources/ThreadsResource.js +83 -0
- package/dist/cloud/resources/ThreadsResource.js.map +1 -1
- package/dist/cloud/types.d.ts +58 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -76,7 +76,7 @@ export interface RunOptions {
|
|
|
76
76
|
* Agent configuration override
|
|
77
77
|
*/
|
|
78
78
|
agentConfig?: {
|
|
79
|
-
model?: 'claude-opus-4-
|
|
79
|
+
model?: 'claude-opus-4-6' | 'claude-sonnet-4-5' | 'claude-haiku-4-5';
|
|
80
80
|
instructions?: string;
|
|
81
81
|
reasoningEffort?: 'minimal' | 'low' | 'medium' | 'high';
|
|
82
82
|
};
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* simplified paths without /projects/:projectId prefix.
|
|
9
9
|
*/
|
|
10
10
|
import type { ApiClient } from '../ApiClient';
|
|
11
|
-
import type { Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, MessageStreamEvent } from '../types';
|
|
11
|
+
import type { Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, MessageStreamEvent, CopyThreadParams, SearchThreadsParams, SearchThreadsResponse, ThreadLogEntry, ResearchSession } from '../types';
|
|
12
12
|
/**
|
|
13
13
|
* Callback for handling streaming events
|
|
14
14
|
*/
|
|
@@ -113,6 +113,72 @@ export declare class ThreadsResource {
|
|
|
113
113
|
* ```
|
|
114
114
|
*/
|
|
115
115
|
sendMessage(threadId: string, options: SendMessageOptions): Promise<SendMessageResult>;
|
|
116
|
+
/**
|
|
117
|
+
* Copy a thread with all its conversation messages into a new thread
|
|
118
|
+
*
|
|
119
|
+
* Creates a new thread with the same environment and agent configuration,
|
|
120
|
+
* copies all conversation messages, and marks the new thread as completed.
|
|
121
|
+
*
|
|
122
|
+
* @param threadId - The source thread to copy
|
|
123
|
+
* @param params - Optional parameters (custom title)
|
|
124
|
+
* @returns The newly created thread
|
|
125
|
+
*
|
|
126
|
+
* @example
|
|
127
|
+
* ```typescript
|
|
128
|
+
* // Copy with auto-generated title ("[Original Title] Copy")
|
|
129
|
+
* const copy = await client.threads.copy('thread_abc');
|
|
130
|
+
*
|
|
131
|
+
* // Copy with custom title
|
|
132
|
+
* const copy = await client.threads.copy('thread_abc', {
|
|
133
|
+
* title: 'My experiment v2'
|
|
134
|
+
* });
|
|
135
|
+
*
|
|
136
|
+
* // Continue conversation on the copy
|
|
137
|
+
* await client.threads.sendMessage(copy.id, {
|
|
138
|
+
* content: 'Try a different approach...',
|
|
139
|
+
* onEvent: (event) => console.log(event)
|
|
140
|
+
* });
|
|
141
|
+
* ```
|
|
142
|
+
*/
|
|
143
|
+
copy(threadId: string, params?: CopyThreadParams): Promise<Thread>;
|
|
144
|
+
/**
|
|
145
|
+
* Search threads by text query
|
|
146
|
+
*
|
|
147
|
+
* Full-text search across thread titles and messages.
|
|
148
|
+
* Requires PostgreSQL backend.
|
|
149
|
+
*
|
|
150
|
+
* @example
|
|
151
|
+
* ```typescript
|
|
152
|
+
* const results = await client.threads.search({
|
|
153
|
+
* query: 'REST API',
|
|
154
|
+
* limit: 10
|
|
155
|
+
* });
|
|
156
|
+
*
|
|
157
|
+
* for (const result of results.results) {
|
|
158
|
+
* console.log(result.thread.title, result.score);
|
|
159
|
+
* }
|
|
160
|
+
* ```
|
|
161
|
+
*/
|
|
162
|
+
search(params: SearchThreadsParams): Promise<SearchThreadsResponse>;
|
|
163
|
+
/**
|
|
164
|
+
* Get execution logs for a thread
|
|
165
|
+
*
|
|
166
|
+
* Returns logs with role separation (user, assistant, execution_log)
|
|
167
|
+
* and relative timestamps from thread start time.
|
|
168
|
+
*/
|
|
169
|
+
getLogs(threadId: string): Promise<ThreadLogEntry[]>;
|
|
170
|
+
/**
|
|
171
|
+
* List deep research sessions for a thread
|
|
172
|
+
*/
|
|
173
|
+
listResearch(threadId: string): Promise<ResearchSession[]>;
|
|
174
|
+
/**
|
|
175
|
+
* Get a specific deep research session
|
|
176
|
+
*/
|
|
177
|
+
getResearch(threadId: string, sessionId: string): Promise<ResearchSession>;
|
|
178
|
+
/**
|
|
179
|
+
* Delete a deep research session
|
|
180
|
+
*/
|
|
181
|
+
deleteResearch(threadId: string, sessionId: string): Promise<void>;
|
|
116
182
|
/**
|
|
117
183
|
* Cancel an in-progress message execution
|
|
118
184
|
*/
|
|
@@ -160,6 +160,89 @@ class ThreadsResource {
|
|
|
160
160
|
events,
|
|
161
161
|
};
|
|
162
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* Copy a thread with all its conversation messages into a new thread
|
|
165
|
+
*
|
|
166
|
+
* Creates a new thread with the same environment and agent configuration,
|
|
167
|
+
* copies all conversation messages, and marks the new thread as completed.
|
|
168
|
+
*
|
|
169
|
+
* @param threadId - The source thread to copy
|
|
170
|
+
* @param params - Optional parameters (custom title)
|
|
171
|
+
* @returns The newly created thread
|
|
172
|
+
*
|
|
173
|
+
* @example
|
|
174
|
+
* ```typescript
|
|
175
|
+
* // Copy with auto-generated title ("[Original Title] Copy")
|
|
176
|
+
* const copy = await client.threads.copy('thread_abc');
|
|
177
|
+
*
|
|
178
|
+
* // Copy with custom title
|
|
179
|
+
* const copy = await client.threads.copy('thread_abc', {
|
|
180
|
+
* title: 'My experiment v2'
|
|
181
|
+
* });
|
|
182
|
+
*
|
|
183
|
+
* // Continue conversation on the copy
|
|
184
|
+
* await client.threads.sendMessage(copy.id, {
|
|
185
|
+
* content: 'Try a different approach...',
|
|
186
|
+
* onEvent: (event) => console.log(event)
|
|
187
|
+
* });
|
|
188
|
+
* ```
|
|
189
|
+
*/
|
|
190
|
+
async copy(threadId, params) {
|
|
191
|
+
const response = await this.client.post(`/threads/${threadId}/copy`, params);
|
|
192
|
+
return response.thread;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Search threads by text query
|
|
196
|
+
*
|
|
197
|
+
* Full-text search across thread titles and messages.
|
|
198
|
+
* Requires PostgreSQL backend.
|
|
199
|
+
*
|
|
200
|
+
* @example
|
|
201
|
+
* ```typescript
|
|
202
|
+
* const results = await client.threads.search({
|
|
203
|
+
* query: 'REST API',
|
|
204
|
+
* limit: 10
|
|
205
|
+
* });
|
|
206
|
+
*
|
|
207
|
+
* for (const result of results.results) {
|
|
208
|
+
* console.log(result.thread.title, result.score);
|
|
209
|
+
* }
|
|
210
|
+
* ```
|
|
211
|
+
*/
|
|
212
|
+
async search(params) {
|
|
213
|
+
const response = await this.client.post(`/threads/search`, params);
|
|
214
|
+
return response;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Get execution logs for a thread
|
|
218
|
+
*
|
|
219
|
+
* Returns logs with role separation (user, assistant, execution_log)
|
|
220
|
+
* and relative timestamps from thread start time.
|
|
221
|
+
*/
|
|
222
|
+
async getLogs(threadId) {
|
|
223
|
+
const response = await this.client.get(`/threads/${threadId}/logs`);
|
|
224
|
+
return response.logs;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* List deep research sessions for a thread
|
|
228
|
+
*/
|
|
229
|
+
async listResearch(threadId) {
|
|
230
|
+
const response = await this.client.get(`/threads/${threadId}/research`);
|
|
231
|
+
return response.sessions;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Get a specific deep research session
|
|
235
|
+
*/
|
|
236
|
+
async getResearch(threadId, sessionId) {
|
|
237
|
+
const response = await this.client.get(`/threads/${threadId}/research/${sessionId}`);
|
|
238
|
+
return response.session;
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Delete a deep research session
|
|
242
|
+
*/
|
|
243
|
+
async deleteResearch(threadId, sessionId) {
|
|
244
|
+
await this.client.delete(`/threads/${threadId}/research/${sessionId}`);
|
|
245
|
+
}
|
|
163
246
|
/**
|
|
164
247
|
* Cancel an in-progress message execution
|
|
165
248
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThreadsResource.js","sourceRoot":"","sources":["../../../src/cloud/resources/ThreadsResource.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG;;;
|
|
1
|
+
{"version":3,"file":"ThreadsResource.js","sourceRoot":"","sources":["../../../src/cloud/resources/ThreadsResource.ts"],"names":[],"mappings":"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"}
|
package/dist/cloud/types.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export interface StartContainerResult {
|
|
|
236
236
|
imageTag: string;
|
|
237
237
|
workspacePath: string;
|
|
238
238
|
}
|
|
239
|
-
export type ThreadStatus = 'active' | 'completed' | 'cancelled';
|
|
239
|
+
export type ThreadStatus = 'active' | 'running' | 'completed' | 'failed' | 'archived' | 'cancelled' | 'deleted';
|
|
240
240
|
export interface ThreadMessage {
|
|
241
241
|
role: 'user' | 'assistant' | 'system';
|
|
242
242
|
content: string;
|
|
@@ -270,6 +270,62 @@ export interface ListThreadsParams extends PaginationParams {
|
|
|
270
270
|
environmentId?: string;
|
|
271
271
|
status?: ThreadStatus;
|
|
272
272
|
}
|
|
273
|
+
export interface CopyThreadParams {
|
|
274
|
+
/**
|
|
275
|
+
* Custom title for the copied thread.
|
|
276
|
+
* If not provided, defaults to "[Original Title] Copy"
|
|
277
|
+
*/
|
|
278
|
+
title?: string;
|
|
279
|
+
}
|
|
280
|
+
export interface SearchThreadsParams {
|
|
281
|
+
/** Search query (required) */
|
|
282
|
+
query: string;
|
|
283
|
+
/** Filter by environment */
|
|
284
|
+
environmentId?: string;
|
|
285
|
+
/** Filter by status */
|
|
286
|
+
status?: ThreadStatus | 'all';
|
|
287
|
+
/** Max results to return (default: 20, max: 100) */
|
|
288
|
+
limit?: number;
|
|
289
|
+
/** Offset for pagination */
|
|
290
|
+
offset?: number;
|
|
291
|
+
/** Include matching messages in results */
|
|
292
|
+
includeMessages?: boolean;
|
|
293
|
+
}
|
|
294
|
+
export interface SearchThreadResult {
|
|
295
|
+
thread: Thread & {
|
|
296
|
+
environmentName?: string;
|
|
297
|
+
agentName?: string | null;
|
|
298
|
+
};
|
|
299
|
+
score: number;
|
|
300
|
+
highlights: string[];
|
|
301
|
+
matchingMessages?: ThreadMessage[];
|
|
302
|
+
}
|
|
303
|
+
export interface SearchThreadsResponse {
|
|
304
|
+
results: SearchThreadResult[];
|
|
305
|
+
total: number;
|
|
306
|
+
hasMore: boolean;
|
|
307
|
+
searchMetadata: {
|
|
308
|
+
query: string;
|
|
309
|
+
queryType: string;
|
|
310
|
+
processingTimeMs: number;
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
export interface ThreadLogEntry {
|
|
314
|
+
role: 'user' | 'assistant' | 'execution_log';
|
|
315
|
+
content: string;
|
|
316
|
+
timestamp?: string;
|
|
317
|
+
relativeTime?: string;
|
|
318
|
+
}
|
|
319
|
+
export interface ResearchSession {
|
|
320
|
+
id: string;
|
|
321
|
+
threadId: string;
|
|
322
|
+
status: string;
|
|
323
|
+
progress?: number;
|
|
324
|
+
query?: string;
|
|
325
|
+
results?: unknown[];
|
|
326
|
+
createdAt: string;
|
|
327
|
+
updatedAt: string;
|
|
328
|
+
}
|
|
273
329
|
export interface SendMessageParams {
|
|
274
330
|
content: string;
|
|
275
331
|
mcpServers?: McpServer[];
|
|
@@ -401,7 +457,7 @@ export interface RunDiff {
|
|
|
401
457
|
* Supported Claude models for agent execution.
|
|
402
458
|
* All agents run via Claude Code CLI in containers.
|
|
403
459
|
*/
|
|
404
|
-
export type AgentModel = 'claude-opus-4-
|
|
460
|
+
export type AgentModel = 'claude-opus-4-6' | 'claude-sonnet-4-5' | 'claude-haiku-4-5';
|
|
405
461
|
/**
|
|
406
462
|
* Reasoning effort level for extended thinking.
|
|
407
463
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -24,5 +24,5 @@ export { ComputerAgentsClient, CloudClient, TestbaseClient, ApiClientError, } fr
|
|
|
24
24
|
export type { ComputerAgentsClientConfig, RunOptions, RunResult, ApiClientConfig, } from './ComputerAgentsClient';
|
|
25
25
|
export { ProjectsResource, EnvironmentsResource, ThreadsResource, RunsResource, AgentsResource, BudgetResource, BillingResource, SchedulesResource, GitResource, } from './cloud/resources';
|
|
26
26
|
export type { StreamEventCallback, SendMessageOptions, SendMessageResult, ListEnvironmentsParams, } from './cloud/resources';
|
|
27
|
-
export type { PaginationParams, PaginatedResponse, ApiError, Project, CreateProjectParams, UpdateProjectParams, ProjectStats, ProjectType, ProjectSource, Environment, CreateEnvironmentParams, UpdateEnvironmentParams, EnvironmentStatus, EnvironmentVariable, McpServer, ContainerStatus, BuildResult, BuildStatus, BuildStatusResult, BuildLogsResult, TestBuildResult, DockerfileResult, ValidateDockerfileResult, RuntimeConfig, PackagesConfig, AvailableRuntimes, PackageType, InstallPackagesResult, StartContainerParams, StartContainerResult, Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, ThreadStatus, AgentConfig, StreamEvent, MessageStreamEvent, ResponseStartedEvent, ResponseItemCompletedEvent, ResponseCompletedEvent, StreamCompletedEvent, StreamErrorEvent, Run, CreateRunParams, UpdateRunParams, ListRunsParams, RunStatus, RunLogEntry, RunDiff, TokenUsage, CloudAgent, CreateAgentParams, UpdateAgentParams, AgentModel, ReasoningEffort, DeepResearchModel, AgentBinary, BudgetStatus, CanExecuteResult, IncreaseBudgetParams, IncreaseBudgetResult, BillingRecord, ListBillingRecordsParams, BillingAccount, UsageStats, UsageStatsParams, FileEntry, ListFilesParams, UploadFileParams, CreateDirectoryParams, GitDiffFile, GitDiffResult, GitCommitParams, GitCommitResult, GitPushParams, GitPushResult, Schedule, CreateScheduleParams, UpdateScheduleParams, ScheduleType, HealthCheck, Metrics, } from './cloud/types';
|
|
27
|
+
export type { PaginationParams, PaginatedResponse, ApiError, Project, CreateProjectParams, UpdateProjectParams, ProjectStats, ProjectType, ProjectSource, Environment, CreateEnvironmentParams, UpdateEnvironmentParams, EnvironmentStatus, EnvironmentVariable, McpServer, ContainerStatus, BuildResult, BuildStatus, BuildStatusResult, BuildLogsResult, TestBuildResult, DockerfileResult, ValidateDockerfileResult, RuntimeConfig, PackagesConfig, AvailableRuntimes, PackageType, InstallPackagesResult, StartContainerParams, StartContainerResult, Thread, CreateThreadParams, UpdateThreadParams, ListThreadsParams, SendMessageParams, ThreadMessage, ThreadStatus, AgentConfig, CopyThreadParams, SearchThreadsParams, SearchThreadResult, SearchThreadsResponse, ThreadLogEntry, ResearchSession, StreamEvent, MessageStreamEvent, ResponseStartedEvent, ResponseItemCompletedEvent, ResponseCompletedEvent, StreamCompletedEvent, StreamErrorEvent, Run, CreateRunParams, UpdateRunParams, ListRunsParams, RunStatus, RunLogEntry, RunDiff, TokenUsage, CloudAgent, CreateAgentParams, UpdateAgentParams, AgentModel, ReasoningEffort, DeepResearchModel, AgentBinary, BudgetStatus, CanExecuteResult, IncreaseBudgetParams, IncreaseBudgetResult, BillingRecord, ListBillingRecordsParams, BillingAccount, UsageStats, UsageStatsParams, FileEntry, ListFilesParams, UploadFileParams, CreateDirectoryParams, GitDiffFile, GitDiffResult, GitCommitParams, GitCommitResult, GitPushParams, GitPushResult, Schedule, CreateScheduleParams, UpdateScheduleParams, ScheduleType, HealthCheck, Metrics, } from './cloud/types';
|
|
28
28
|
export { ApiClient } from './cloud/ApiClient';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAEH,+EAA+E;AAC/E,cAAc;AACd,+EAA+E;AAE/E,+DAOgC;AAN9B,4HAAA,oBAAoB,OAAA;AACpB,kCAAkC;AAClC,mHAAA,WAAW,OAAA;AACX,sHAAA,cAAc,OAAA;AACd,cAAc;AACd,sHAAA,cAAc,OAAA;AAUhB,+EAA+E;AAC/E,yCAAyC;AACzC,+EAA+E;AAE/E,+CAU2B;AATzB,6GAAA,gBAAgB,OAAA;AAChB,iHAAA,oBAAoB,OAAA;AACpB,4GAAA,eAAe,OAAA;AACf,yGAAA,YAAY,OAAA;AACZ,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,4GAAA,eAAe,OAAA;AACf,8GAAA,iBAAiB,OAAA;AACjB,wGAAA,WAAW,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;;AAEH,+EAA+E;AAC/E,cAAc;AACd,+EAA+E;AAE/E,+DAOgC;AAN9B,4HAAA,oBAAoB,OAAA;AACpB,kCAAkC;AAClC,mHAAA,WAAW,OAAA;AACX,sHAAA,cAAc,OAAA;AACd,cAAc;AACd,sHAAA,cAAc,OAAA;AAUhB,+EAA+E;AAC/E,yCAAyC;AACzC,+EAA+E;AAE/E,+CAU2B;AATzB,6GAAA,gBAAgB,OAAA;AAChB,iHAAA,oBAAoB,OAAA;AACpB,4GAAA,eAAe,OAAA;AACf,yGAAA,YAAY,OAAA;AACZ,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,4GAAA,eAAe,OAAA;AACf,8GAAA,iBAAiB,OAAA;AACjB,wGAAA,WAAW,OAAA;AAmIb,+EAA+E;AAC/E,4CAA4C;AAC5C,+EAA+E;AAE/E,+CAA8C;AAArC,sGAAA,SAAS,OAAA"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "computer-agents",
|
|
3
3
|
"repository": "https://github.com/TestBase-ai/computer-agents",
|
|
4
4
|
"homepage": "https://computer-agents.com",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.1.0",
|
|
6
6
|
"description": "Official SDK for the Computer Agents Cloud API. Execute Claude-powered AI agents in isolated cloud containers.",
|
|
7
7
|
"author": "Computer Agents",
|
|
8
8
|
"main": "dist/index.js",
|