File size: 17,467 Bytes
bbcfe72 876b3cb bbcfe72 666aab6 bbcfe72 666aab6 11b240f bbcfe72 a20767f 666aab6 bbcfe72 666aab6 bbcfe72 666aab6 bbcfe72 666aab6 876b3cb a20767f 666aab6 876b3cb 666aab6 876b3cb bbcfe72 876b3cb bbcfe72 bb9b14c bbcfe72 bb9b14c bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 876b3cb bbcfe72 a20767f 876b3cb bbcfe72 a20767f 876b3cb bbcfe72 11b240f a20767f bbcfe72 11b240f a20767f bbcfe72 666aab6 bbcfe72 bb9b14c bbcfe72 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 | /**
* God Agent OS v12 β API Client
* Real autonomous agent β E2B execution + live streaming
*/
export const DEFAULT_BACKEND = process.env.NEXT_PUBLIC_API_URL || 'https://pyae1994-autonomous-coding-system.hf.space'
function getBackendUrl(): string {
if (typeof window === 'undefined') return DEFAULT_BACKEND
try {
const stored = localStorage.getItem('god-agent-store')
if (stored) {
const parsed = JSON.parse(stored)
return parsed?.state?.backendUrl || DEFAULT_BACKEND
}
} catch {}
return DEFAULT_BACKEND
}
export function getApiBase(): string {
return getBackendUrl()
}
export function getWsBase(): string {
return getApiBase().replace(/^https?:\/\//, (m) => m === 'https://' ? 'wss://' : 'ws://')
}
export async function fetchAPI(path: string, options?: RequestInit) {
const base = getApiBase()
const res = await fetch(`${base}${path}`, {
headers: {
'Content-Type': 'application/json',
...(options?.headers || {}),
},
...options,
})
if (!res.ok) {
const text = await res.text().catch(() => '')
throw new Error(`API ${res.status}: ${text.slice(0, 200) || res.statusText}`)
}
return res.json()
}
// βββ Health ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getHealth() {
return fetchAPI('/health')
}
export async function getSystemStatus() {
return fetchAPI('/api/v1/system/status')
}
// βββ Chat / Orchestration βββββββββββββββββββββββββββββββββββββββββββββββββ
export interface ChatMessage {
role: 'user' | 'assistant' | 'system'
content: string
}
export interface ToolResult {
tool: string
success: boolean
sandboxId?: string
stdout?: string
stderr?: string
exitCode?: number
output?: string
durationMs?: number
}
export interface ComputerUseStepEvent {
type: 'thinking' | 'coding' | 'terminal' | 'file' | 'browsing' | 'git' | 'deploy' | 'executing' | 'complete' | 'error'
title: string
detail?: string
status?: 'running' | 'done' | 'error'
tool?: string
sandboxId?: string
stdout?: string
exitCode?: number
}
/**
* Stream from autonomous agent β handles v12 event protocol
* Events: llm_chunk, tool_executing, tool_result, agent_complete, stream_end, error
*/
export async function streamOrchestrate(
message: string,
sessionId: string,
onChunk: (chunk: string) => void,
onDone: (full: string) => void,
onError: (err: string) => void,
onComputerUseStep?: (step: ComputerUseStepEvent) => void,
onToolResult?: (result: ToolResult) => void,
): Promise<AbortController> {
const base = getApiBase()
const controller = new AbortController()
try {
// Use /api/v1/agent β intent router (chat OR real E2B execute)
const res = await fetch(`${base}/api/v1/agent`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
signal: controller.signal,
body: JSON.stringify({
message,
stream: true,
session_id: sessionId,
}),
})
if (!res.ok) {
const text = await res.text()
onError(`Backend error ${res.status}: ${text.slice(0, 200)}`)
return controller
}
const reader = res.body?.getReader()
const decoder = new TextDecoder()
let full = ''
let buffer = ''
if (!reader) {
onError('No response body')
return controller
}
// Emit initial thinking step
onComputerUseStep?.({
type: 'thinking',
title: `Analyzing: ${message.slice(0, 60)}...`,
status: 'running',
})
while (true) {
const { done, value } = await reader.read()
if (done) break
buffer += decoder.decode(value, { stream: true })
const lines = buffer.split('\n')
buffer = lines.pop() || '' // Keep incomplete line in buffer
for (const line of lines) {
const trimmed = line.trim()
if (!trimmed.startsWith('data:')) continue
const jsonStr = trimmed.slice(5).trim()
if (!jsonStr || jsonStr === '[DONE]') {
onDone(full)
return controller
}
try {
const event = JSON.parse(jsonStr)
const eventType = event.type || ''
const data = event.data || {}
switch (eventType) {
case 'llm_chunk': {
const chunk = data.chunk || ''
if (chunk) {
full += chunk
onChunk(chunk)
}
break
}
case 'thinking_start': {
onComputerUseStep?.({
type: 'thinking',
title: `Reasoning (iteration ${data.iteration || 1})...`,
status: 'running',
})
break
}
case 'agent_thinking': {
onComputerUseStep?.({
type: 'thinking',
title: data.message ? `Processing: ${String(data.message).slice(0, 60)}` : 'Thinking...',
status: 'running',
})
break
}
case 'agent_iteration': {
onComputerUseStep?.({
type: 'thinking',
title: `Planning step ${data.iteration || 1}...`,
status: 'running',
})
break
}
case 'tool_executing': {
const toolName = data.tool || ''
const stepType = getStepType(toolName)
onComputerUseStep?.({
type: stepType,
title: `${getToolLabel(toolName)}: ${formatArgs(data.args)}`,
status: 'running',
tool: toolName,
})
break
}
case 'tool_result': {
const toolName = data.tool || ''
const stepType = getStepType(toolName)
const raw = data.raw || {}
const success = data.success !== false
const sandboxId = data.sandbox_id || raw.sandbox_id || 'local'
const stdout = raw.stdout || raw.output || ''
const stderr = raw.stderr || ''
const exitCode = raw.exit_code ?? 0
onComputerUseStep?.({
type: success ? stepType : 'error',
title: success
? `β
${getToolLabel(toolName)} completed (sandbox: ${sandboxId})`
: `β ${getToolLabel(toolName)} failed`,
detail: stdout ? stdout.slice(0, 300) : (stderr ? stderr.slice(0, 200) : undefined),
status: 'done',
tool: toolName,
sandboxId,
stdout: stdout.slice(0, 500),
exitCode,
})
onToolResult?.({
tool: toolName,
success,
sandboxId,
stdout: stdout.slice(0, 2000),
stderr: stderr.slice(0, 500),
exitCode,
output: data.result?.slice(0, 2000),
durationMs: raw._duration_ms,
})
// Inject tool output into chat as a system block
if (data.result) {
const resultBlock = `\n\n**Tool: ${getToolLabel(toolName)}** (${sandboxId})\n${data.result.slice(0, 1500)}`
full += resultBlock
onChunk(resultBlock)
}
break
}
case 'agent_complete': {
onComputerUseStep?.({
type: 'complete',
title: `β
Task complete β ${data.tools_called || 0} tools executed, ${data.iterations || 1} iterations`,
status: 'done',
})
break
}
case 'stream_end': {
const finalResponse = data.full_response || full
onDone(finalResponse)
return controller
}
case 'error': {
onError(data.error || 'Unknown error')
return controller
}
// Legacy events from older API
case 'agent_start': {
onComputerUseStep?.({
type: 'thinking',
title: `Agent started: ${String(data.message || '').slice(0, 60)}`,
status: 'running',
})
break
}
case 'tool_called': {
const toolName = data.tool || ''
onComputerUseStep?.({
type: getStepType(toolName),
title: `Calling: ${getToolLabel(toolName)}`,
status: 'running',
tool: toolName,
})
break
}
case 'computer_use_step': {
onComputerUseStep?.({
type: (data.type as ComputerUseStepEvent['type']) || 'executing',
title: data.title || '',
detail: data.detail,
status: data.status === 'done' ? 'done' : 'running',
})
break
}
}
} catch (_e) {
// Skip malformed JSON lines
}
}
}
onDone(full)
} catch (e: unknown) {
const msg = (e as Error).message || String(e)
if (!msg.includes('abort')) onError(msg)
}
return controller
}
// βββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function getStepType(toolName: string): ComputerUseStepEvent['type'] {
const map: Record<string, ComputerUseStepEvent['type']> = {
execute_python: 'coding',
execute_shell: 'terminal',
write_file: 'file',
read_file: 'file',
delete_file: 'file',
list_files: 'file',
web_search: 'browsing',
install_package: 'terminal',
git_clone: 'git',
git_commit: 'git',
git_push: 'git',
deploy: 'deploy',
}
return map[toolName] || 'executing'
}
function getToolLabel(toolName: string): string {
const map: Record<string, string> = {
execute_python: 'π Python Execution',
execute_shell: 'π» Shell Command',
write_file: 'π Write File',
read_file: 'π Read File',
delete_file: 'ποΈ Delete File',
list_files: 'π List Files',
web_search: 'π Web Search',
install_package: 'π¦ Install Package',
}
return map[toolName] || toolName
}
function formatArgs(args: Record<string, unknown> | undefined): string {
if (!args) return ''
const key = Object.keys(args)[0]
if (!key) return ''
const val = String(args[key] || '').slice(0, 60)
return val
}
// βββ Direct Tool Execution ββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function executeTool(
tool: string,
args: Record<string, unknown>,
sessionId: string,
) {
return fetchAPI('/api/v1/execute', {
method: 'POST',
body: JSON.stringify({ tool, args, session_id: sessionId }),
})
}
// βββ Sandbox Info βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getSandboxInfo(sessionId: string) {
return fetchAPI(`/api/v1/sandbox/${sessionId}`)
}
// βββ Computer Use βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getComputerUseSteps(sessionId: string) {
return fetchAPI(`/api/v1/computer-use/${sessionId}`)
}
// βββ Spaces ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getSpaces() {
return fetchAPI('/api/v1/spaces')
}
// βββ Agents ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getAgents() {
return fetchAPI('/api/v1/agents')
}
export async function runAgent(agentName: string, task: string, sessionId: string) {
return fetchAPI(`/api/v1/agents/${agentName}/run`, {
method: 'POST',
body: JSON.stringify({ task, session_id: sessionId }),
})
}
// βββ Tasks βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getTasks() {
return fetchAPI('/api/v1/tasks/')
}
export async function createTask(goal: string, sessionId: string) {
return fetchAPI('/api/v1/chat/goal', {
method: 'POST',
body: JSON.stringify({ goal, session_id: sessionId }),
})
}
// βββ Memory ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getMemory() {
return fetchAPI('/api/v1/memory/')
}
// βββ Connectors ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getConnectors() {
return fetchAPI('/api/v1/connectors')
}
// βββ AI Stats ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export async function getAIStats() {
return fetchAPI('/api/v1/ai/stats')
}
export async function getPoolStatus() {
return fetchAPI('/api/v1/ai/pool-status')
}
// βββ Direct execute (E2B sandbox, no LLM) ββββββββββββββββββββββββββββββββββββ
export interface ExecuteEvent {
type: 'agent_start' | 'tool_executing' | 'sandbox_ready' | 'stdout' | 'stderr' | 'result' | 'tool_result' | 'agent_complete' | 'stream_end' | 'error'
data?: any
text?: string
sandbox_id?: string
backend?: string
exit_code?: number
success?: boolean
duration_ms?: number
session_id?: string
error?: string
}
/**
* Execute code directly in E2B sandbox with SSE streaming.
* Returns AbortController so caller can cancel.
*/
export async function executeCode(
opts: { language?: string; code: string; sessionId: string; timeout?: number },
onEvent: (ev: ExecuteEvent) => void,
): Promise<AbortController> {
const base = getApiBase()
const controller = new AbortController()
try {
const res = await fetch(`${base}/api/v1/execute`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
signal: controller.signal,
body: JSON.stringify({
language: opts.language || 'python',
code: opts.code,
session_id: opts.sessionId,
timeout: opts.timeout || 60,
stream: true,
}),
})
if (!res.ok || !res.body) {
onEvent({ type: 'error', error: `HTTP ${res.status}` })
return controller
}
const reader = res.body.getReader()
const decoder = new TextDecoder()
let buffer = ''
while (true) {
const { done, value } = await reader.read()
if (done) break
buffer += decoder.decode(value, { stream: true })
const lines = buffer.split('\n')
buffer = lines.pop() || ''
for (const line of lines) {
const t = line.trim()
if (!t.startsWith('data:')) continue
try {
const ev = JSON.parse(t.slice(5).trim())
onEvent(ev)
} catch {}
}
}
} catch (e: unknown) {
const msg = (e as Error).message || String(e)
if (!msg.includes('abort')) onEvent({ type: 'error', error: msg })
}
return controller
}
export async function killSandbox(sessionId: string) {
return fetchAPI(`/api/v1/sandbox/${sessionId}`, { method: 'DELETE' })
}
export async function getSandboxInfo(sessionId: string) {
return fetchAPI(`/api/v1/sandbox/${sessionId}`)
}
// βββ WebSocket ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export function createWebSocket(sessionId: string): WebSocket {
return new WebSocket(`${getWsBase()}/ws/${sessionId}`)
}
export function createComputerUseWS(sessionId: string): WebSocket {
return new WebSocket(`${getWsBase()}/ws/computer-use/${sessionId}`)
}
// βββ Export URLs βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export const API_URL = DEFAULT_BACKEND
export const WS_URL = DEFAULT_BACKEND.replace(/^https?:\/\//, (m) => m === 'https://' ? 'wss://' : 'ws://')
|