suna/frontend/src/lib/api.ts

924 lines
29 KiB
TypeScript
Raw Normal View History

2025-04-13 20:57:29 +08:00
import { createClient } from '@/lib/supabase/client';
2025-03-30 14:48:57 +08:00
const API_URL = process.env.NEXT_PUBLIC_BACKEND_URL || '';
2025-04-18 19:27:21 +08:00
// Simple cache implementation for non-agent data
2025-04-01 15:27:39 +08:00
const apiCache = {
projects: new Map(),
threads: new Map(),
threadMessages: new Map(),
getProject: (projectId: string) => apiCache.projects.get(projectId),
setProject: (projectId: string, data: any) => apiCache.projects.set(projectId, data),
getProjects: () => apiCache.projects.get('all'),
setProjects: (data: any) => apiCache.projects.set('all', data),
getThreads: (projectId: string) => apiCache.threads.get(projectId || 'all'),
setThreads: (projectId: string, data: any) => apiCache.threads.set(projectId || 'all', data),
getThreadMessages: (threadId: string) => apiCache.threadMessages.get(threadId),
setThreadMessages: (threadId: string, data: any) => apiCache.threadMessages.set(threadId, data),
// Helper to clear parts of the cache when data changes
invalidateThreadMessages: (threadId: string) => apiCache.threadMessages.delete(threadId),
};
2025-04-18 18:50:39 +08:00
// Track active streams by agent run ID
2025-04-18 19:27:21 +08:00
const activeStreams = new Map<string, EventSource>();
// Track agent runs that have been confirmed as completed or not found
const nonRunningAgentRuns = new Set<string>();
2025-04-01 15:27:39 +08:00
2025-03-30 14:48:57 +08:00
export type Project = {
id: string;
name: string;
description: string;
2025-04-13 20:57:29 +08:00
account_id: string;
2025-03-30 14:48:57 +08:00
created_at: string;
2025-04-15 22:34:26 +08:00
sandbox: {
vnc_preview?: string;
2025-04-20 08:27:32 +08:00
sandbox_url?: string;
2025-04-15 22:34:26 +08:00
id?: string;
pass?: string;
};
2025-03-30 14:48:57 +08:00
}
export type Thread = {
thread_id: string;
2025-04-13 20:57:29 +08:00
account_id: string | null;
2025-03-31 06:22:00 +08:00
project_id?: string | null;
2025-03-30 14:48:57 +08:00
created_at: string;
updated_at: string;
2025-03-30 14:48:57 +08:00
}
export type Message = {
2025-03-31 06:22:00 +08:00
role: string;
2025-03-30 14:48:57 +08:00
content: string;
2025-04-14 08:31:23 +08:00
type: string;
2025-03-30 14:48:57 +08:00
}
export type AgentRun = {
id: string;
thread_id: string;
status: 'running' | 'completed' | 'stopped' | 'error';
started_at: string;
completed_at: string | null;
2025-03-31 13:27:21 +08:00
responses: Message[];
2025-03-30 14:48:57 +08:00
error: string | null;
}
2025-03-31 13:27:21 +08:00
export type ToolCall = {
name: string;
arguments: Record<string, unknown>;
}
2025-03-30 14:48:57 +08:00
// Project APIs
export const getProjects = async (): Promise<Project[]> => {
2025-04-01 15:27:39 +08:00
// Check cache first
const cached = apiCache.getProjects();
if (cached) {
return cached;
}
2025-04-18 19:27:21 +08:00
try {
const supabase = createClient();
const { data, error } = await supabase
.from('projects')
.select('*');
if (error) {
// Handle permission errors specifically
if (error.code === '42501' && error.message.includes('has_role_on_account')) {
console.error('Permission error: User does not have proper account access');
return []; // Return empty array instead of throwing
2025-04-13 20:57:29 +08:00
}
2025-04-18 19:27:21 +08:00
throw error;
2025-04-13 20:57:29 +08:00
}
2025-04-18 19:27:21 +08:00
// Cache the result
apiCache.setProjects(data || []);
return data || [];
} catch (err) {
console.error('Error fetching projects:', err);
// Return empty array for permission errors to avoid crashing the UI
return [];
}
2025-03-30 14:48:57 +08:00
};
export const getProject = async (projectId: string): Promise<Project> => {
2025-04-01 15:27:39 +08:00
// Check cache first
const cached = apiCache.getProject(projectId);
if (cached) {
return cached;
}
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
const { data, error } = await supabase
.from('projects')
.select('*')
.eq('project_id', projectId)
.single();
if (error) throw error;
// If project has a sandbox, ensure it's started
if (data.sandbox?.id) {
try {
const { data: { session } } = await supabase.auth.getSession();
if (session?.access_token) {
console.log(`Ensuring sandbox is active for project ${projectId}...`);
const response = await fetch(`${API_URL}/project/${projectId}/sandbox/ensure-active`, {
method: 'POST',
headers: {
'Authorization': `Bearer ${session.access_token}`,
'Content-Type': 'application/json',
},
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.warn(`Failed to ensure sandbox is active: ${response.status} ${response.statusText}`, errorText);
} else {
console.log('Sandbox activation successful');
}
}
} catch (sandboxError) {
console.warn('Failed to ensure sandbox is active:', sandboxError);
// Non-blocking error - continue with the project data
}
}
2025-04-01 15:27:39 +08:00
// Cache the result
apiCache.setProject(projectId, data);
2025-03-30 14:48:57 +08:00
return data;
};
2025-04-13 20:57:29 +08:00
export const createProject = async (
projectData: { name: string; description: string },
accountId?: string
): Promise<Project> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
2025-04-13 20:57:29 +08:00
// If accountId is not provided, we'll need to get the user's ID
if (!accountId) {
const { data: userData, error: userError } = await supabase.auth.getUser();
if (userError) throw userError;
if (!userData.user) throw new Error('You must be logged in to create a project');
// In Basejump, the personal account ID is the same as the user ID
accountId = userData.user.id;
}
2025-03-30 14:48:57 +08:00
const { data, error } = await supabase
.from('projects')
.insert({
name: projectData.name,
description: projectData.description || null,
2025-04-13 20:57:29 +08:00
account_id: accountId
2025-03-30 14:48:57 +08:00
})
.select()
.single();
if (error) throw error;
// Map the database response to our Project type
return {
id: data.project_id,
name: data.name,
description: data.description || '',
2025-04-13 20:57:29 +08:00
account_id: data.account_id,
2025-04-15 22:34:26 +08:00
created_at: data.created_at,
sandbox: { id: "", pass: "", vnc_preview: "" }
2025-03-30 14:48:57 +08:00
};
};
export const updateProject = async (projectId: string, data: Partial<Project>): Promise<Project> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
const { data: updatedData, error } = await supabase
.from('projects')
.update(data)
.eq('project_id', projectId)
.select()
.single();
2025-04-17 01:27:18 +08:00
if (error) {
console.error('Error updating project:', error);
throw error;
}
if (!updatedData) {
throw new Error('No data returned from update');
}
// Invalidate cache after successful update
apiCache.projects.delete(projectId);
apiCache.projects.delete('all');
// Dispatch a custom event to notify components about the project change
if (typeof window !== 'undefined') {
window.dispatchEvent(new CustomEvent('project-updated', {
detail: {
projectId,
updatedData: {
2025-04-20 12:29:55 +08:00
id: updatedData.project_id,
2025-04-17 01:27:18 +08:00
name: updatedData.name,
description: updatedData.description
}
}
}));
}
2025-04-20 12:29:55 +08:00
// Return formatted project data
return {
id: updatedData.project_id,
name: updatedData.name,
description: updatedData.description || '',
account_id: updatedData.account_id,
created_at: updatedData.created_at,
sandbox: updatedData.sandbox || { id: "", pass: "", vnc_preview: "" }
};
2025-03-30 14:48:57 +08:00
};
export const deleteProject = async (projectId: string): Promise<void> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
const { error } = await supabase
.from('projects')
.delete()
.eq('project_id', projectId);
if (error) throw error;
};
// Thread APIs
export const getThreads = async (projectId?: string): Promise<Thread[]> => {
2025-04-01 15:27:39 +08:00
// Check cache first
const cached = apiCache.getThreads(projectId || 'all');
if (cached) {
return cached;
}
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
const supabase = createClient();
let query = supabase.from('threads').select('*');
if (projectId) {
query = query.eq('project_id', projectId);
}
const { data, error } = await query;
2025-04-01 15:27:39 +08:00
2025-04-18 19:27:21 +08:00
if (error) throw error;
2025-04-01 15:27:39 +08:00
2025-04-18 19:27:21 +08:00
// Cache the result
apiCache.setThreads(projectId || 'all', data || []);
return data || [];
2025-03-30 14:48:57 +08:00
};
export const getThread = async (threadId: string): Promise<Thread> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
const { data, error } = await supabase
.from('threads')
.select('*')
.eq('thread_id', threadId)
.single();
if (error) throw error;
return data;
2025-03-30 14:48:57 +08:00
};
2025-04-13 20:57:29 +08:00
export const createThread = async (projectId: string): Promise<Thread> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
2025-04-13 20:57:29 +08:00
// If user is not logged in, redirect to login
const { data: { user } } = await supabase.auth.getUser();
if (!user) {
throw new Error('You must be logged in to create a thread');
}
2025-03-30 14:48:57 +08:00
const { data, error } = await supabase
.from('threads')
.insert({
2025-04-13 20:57:29 +08:00
project_id: projectId,
account_id: user.id, // Use the current user's ID as the account ID
2025-03-30 14:48:57 +08:00
})
.select()
.single();
2025-04-13 20:57:29 +08:00
if (error) throw error;
2025-03-30 14:48:57 +08:00
return data;
2025-03-30 14:48:57 +08:00
};
export const addUserMessage = async (threadId: string, content: string): Promise<void> => {
2025-03-31 06:22:00 +08:00
const supabase = createClient();
2025-03-30 14:48:57 +08:00
// Format the message in the format the LLM expects - keep it simple with only required fields
const message = {
role: 'user',
content: content
};
2025-03-30 14:48:57 +08:00
// Insert the message into the messages table
const { error } = await supabase
.from('messages')
.insert({
thread_id: threadId,
type: 'user',
is_llm_message: true,
content: JSON.stringify(message)
});
2025-03-30 14:48:57 +08:00
if (error) {
console.error('Error adding user message:', error);
throw new Error(`Error adding message: ${error.message}`);
2025-03-30 14:48:57 +08:00
}
2025-04-01 15:27:39 +08:00
// Invalidate the cache for this thread's messages
apiCache.invalidateThreadMessages(threadId);
2025-03-30 14:48:57 +08:00
};
2025-04-16 08:04:04 +08:00
export const getMessages = async (threadId: string): Promise<Message[]> => {
2025-04-01 15:27:39 +08:00
// Check cache first
const cached = apiCache.getThreadMessages(threadId);
if (cached) {
2025-04-16 08:04:04 +08:00
return cached;
2025-04-01 15:27:39 +08:00
}
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
const supabase = createClient();
2025-04-01 15:27:39 +08:00
2025-04-18 19:27:21 +08:00
const { data, error } = await supabase
.from('messages')
.select('*')
.eq('thread_id', threadId)
.neq('type', 'cost')
.neq('type', 'summary')
.order('created_at', { ascending: true });
if (error) {
console.error('Error fetching messages:', error);
throw new Error(`Error getting messages: ${error.message}`);
}
2025-04-18 20:28:11 +08:00
console.log('[API] Messages fetched:', data);
2025-04-01 15:27:39 +08:00
2025-04-18 19:27:21 +08:00
// Cache the result
apiCache.setThreadMessages(threadId, data || []);
return data || [];
2025-03-30 14:48:57 +08:00
};
// Agent APIs
2025-04-18 13:42:57 +08:00
export const startAgent = async (
threadId: string,
options?: {
model_name?: string;
enable_thinking?: boolean;
reasoning_effort?: string;
stream?: boolean;
}
): Promise<{ agent_run_id: string }> => {
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
throw new Error('No access token available');
}
2025-03-31 06:22:00 +08:00
// Check if backend URL is configured
if (!API_URL) {
throw new Error('Backend URL is not configured. Set NEXT_PUBLIC_BACKEND_URL in your environment.');
}
console.log(`[API] Starting agent for thread ${threadId} using ${API_URL}/thread/${threadId}/agent/start`);
const response = await fetch(`${API_URL}/thread/${threadId}/agent/start`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${session.access_token}`,
},
2025-04-18 19:27:21 +08:00
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
2025-04-19 00:01:59 +08:00
// Add the body, stringifying the options or an empty object
2025-04-18 13:42:57 +08:00
body: JSON.stringify(options || {}),
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.error(`[API] Error starting agent: ${response.status} ${response.statusText}`, errorText);
throw new Error(`Error starting agent: ${response.statusText} (${response.status})`);
}
return response.json();
} catch (error) {
console.error('[API] Failed to start agent:', error);
// Provide clearer error message for network errors
if (error instanceof TypeError && error.message.includes('Failed to fetch')) {
throw new Error(`Cannot connect to backend server. Please check your internet connection and make sure the backend is running.`);
}
throw error;
2025-03-30 14:48:57 +08:00
}
};
export const stopAgent = async (agentRunId: string): Promise<void> => {
2025-04-18 19:27:21 +08:00
// Add to non-running set immediately to prevent reconnection attempts
nonRunningAgentRuns.add(agentRunId);
// Close any existing stream
const existingStream = activeStreams.get(agentRunId);
if (existingStream) {
console.log(`[API] Closing existing stream for ${agentRunId} before stopping agent`);
existingStream.close();
activeStreams.delete(agentRunId);
}
2025-03-31 06:22:00 +08:00
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
2025-03-30 14:48:57 +08:00
2025-03-31 06:22:00 +08:00
if (!session?.access_token) {
throw new Error('No access token available');
}
2025-03-30 14:48:57 +08:00
const response = await fetch(`${API_URL}/agent-run/${agentRunId}/stop`, {
method: 'POST',
2025-03-31 06:22:00 +08:00
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${session.access_token}`,
},
2025-04-18 19:27:21 +08:00
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
2025-03-30 14:48:57 +08:00
});
if (!response.ok) {
throw new Error(`Error stopping agent: ${response.statusText}`);
}
};
export const getAgentStatus = async (agentRunId: string): Promise<AgentRun> => {
2025-04-18 19:27:21 +08:00
console.log(`[API] Requesting agent status for ${agentRunId}`);
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
// If we already know this agent is not running, throw an error
if (nonRunningAgentRuns.has(agentRunId)) {
console.log(`[API] Agent run ${agentRunId} is known to be non-running, returning error`);
throw new Error(`Agent run ${agentRunId} is not running`);
2025-04-18 18:50:39 +08:00
}
2025-03-30 14:48:57 +08:00
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
2025-04-18 19:27:21 +08:00
console.error('[API] No access token available for getAgentStatus');
throw new Error('No access token available');
}
2025-03-31 06:22:00 +08:00
const url = `${API_URL}/agent-run/${agentRunId}`;
2025-04-18 19:27:21 +08:00
console.log(`[API] Fetching from: ${url}`);
const response = await fetch(url, {
headers: {
'Authorization': `Bearer ${session.access_token}`,
},
2025-04-18 19:27:21 +08:00
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
2025-04-18 19:27:21 +08:00
console.error(`[API] Error getting agent status: ${response.status} ${response.statusText}`, errorText);
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
// If we get a 404, add to non-running set
if (response.status === 404) {
nonRunningAgentRuns.add(agentRunId);
2025-04-18 18:50:39 +08:00
}
throw new Error(`Error getting agent status: ${response.statusText} (${response.status})`);
}
const data = await response.json();
2025-04-18 19:27:21 +08:00
console.log(`[API] Successfully got agent status:`, data);
2025-04-18 19:27:21 +08:00
// If agent is not running, add to non-running set
if (data.status !== 'running') {
nonRunningAgentRuns.add(agentRunId);
}
return data;
} catch (error) {
2025-04-18 19:27:21 +08:00
console.error('[API] Failed to get agent status:', error);
throw error;
2025-03-30 14:48:57 +08:00
}
};
export const getAgentRuns = async (threadId: string): Promise<AgentRun[]> => {
2025-04-18 19:27:21 +08:00
try {
2025-04-01 15:27:39 +08:00
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
throw new Error('No access token available');
}
const response = await fetch(`${API_URL}/thread/${threadId}/agent-runs`, {
headers: {
'Authorization': `Bearer ${session.access_token}`,
},
2025-04-18 19:27:21 +08:00
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
2025-04-01 15:27:39 +08:00
});
if (!response.ok) {
throw new Error(`Error getting agent runs: ${response.statusText}`);
}
const data = await response.json();
2025-04-18 19:27:21 +08:00
return data.agent_runs || [];
} catch (error) {
console.error('Failed to get agent runs:', error);
throw error;
}
2025-03-30 14:48:57 +08:00
};
export const streamAgent = (agentRunId: string, callbacks: {
onMessage: (content: string) => void;
2025-03-31 13:27:21 +08:00
onError: (error: Error | string) => void;
2025-03-30 14:48:57 +08:00
onClose: () => void;
}): () => void => {
2025-04-18 19:27:21 +08:00
console.log(`[STREAM] streamAgent called for ${agentRunId}`);
// Check if this agent run is known to be non-running
if (nonRunningAgentRuns.has(agentRunId)) {
console.log(`[STREAM] Agent run ${agentRunId} is known to be non-running, not creating stream`);
// Notify the caller immediately
setTimeout(() => {
callbacks.onError(`Agent run ${agentRunId} is not running`);
callbacks.onClose();
}, 0);
// Return a no-op cleanup function
return () => {};
}
2025-03-30 14:48:57 +08:00
2025-04-18 18:50:39 +08:00
// Check if there's already an active stream for this agent run
2025-04-18 19:27:21 +08:00
const existingStream = activeStreams.get(agentRunId);
if (existingStream) {
console.log(`[STREAM] Stream already exists for ${agentRunId}, closing it first`);
existingStream.close();
activeStreams.delete(agentRunId);
}
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
// Set up a new stream
try {
const setupStream = async () => {
// First verify the agent is actually running
try {
const status = await getAgentStatus(agentRunId);
if (status.status !== 'running') {
console.log(`[STREAM] Agent run ${agentRunId} is not running (status: ${status.status}), not creating stream`);
nonRunningAgentRuns.add(agentRunId);
callbacks.onError(`Agent run ${agentRunId} is not running (status: ${status.status})`);
callbacks.onClose();
return;
}
} catch (err) {
console.error(`[STREAM] Error verifying agent run ${agentRunId}:`, err);
// Check if this is a "not found" error
const errorMessage = err instanceof Error ? err.message : String(err);
const isNotFoundError = errorMessage.includes('not found') ||
errorMessage.includes('404') ||
errorMessage.includes('does not exist');
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
if (isNotFoundError) {
console.log(`[STREAM] Agent run ${agentRunId} not found, not creating stream`);
nonRunningAgentRuns.add(agentRunId);
2025-04-18 18:50:39 +08:00
}
2025-04-18 19:27:21 +08:00
callbacks.onError(errorMessage);
callbacks.onClose();
2025-03-30 14:48:57 +08:00
return;
}
2025-03-31 06:22:00 +08:00
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
2025-03-30 14:48:57 +08:00
console.error('[STREAM] No auth token available');
2025-04-17 20:24:42 +08:00
callbacks.onError(new Error('Authentication required'));
2025-03-30 14:48:57 +08:00
callbacks.onClose();
return;
}
const url = new URL(`${API_URL}/agent-run/${agentRunId}/stream`);
2025-03-31 06:22:00 +08:00
url.searchParams.append('token', session.access_token);
2025-03-30 14:48:57 +08:00
console.log(`[STREAM] Creating EventSource for ${agentRunId}`);
2025-04-18 18:50:39 +08:00
const eventSource = new EventSource(url.toString());
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
// Store the EventSource in the active streams map
activeStreams.set(agentRunId, eventSource);
2025-04-18 18:50:39 +08:00
eventSource.onopen = () => {
2025-03-30 14:48:57 +08:00
console.log(`[STREAM] Connection opened for ${agentRunId}`);
};
2025-04-18 18:50:39 +08:00
eventSource.onmessage = (event) => {
2025-03-30 14:48:57 +08:00
try {
const rawData = event.data;
if (rawData.includes('"type":"ping"')) return;
2025-04-18 18:50:39 +08:00
// Log raw data for debugging (truncated for readability)
console.log(`[STREAM] Received data for ${agentRunId}: ${rawData.substring(0, 100)}${rawData.length > 100 ? '...' : ''}`);
2025-04-17 20:24:42 +08:00
// Skip empty messages
if (!rawData || rawData.trim() === '') {
console.debug('[STREAM] Received empty message, skipping');
2025-04-16 13:01:57 +08:00
return;
}
2025-04-17 20:24:42 +08:00
2025-04-18 18:50:39 +08:00
// Check for "Agent run not found" error
if (rawData.includes('Agent run') && rawData.includes('not found in active runs')) {
2025-04-18 19:27:21 +08:00
console.log(`[STREAM] Agent run ${agentRunId} not found in active runs, closing stream`);
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
// Add to non-running set to prevent future reconnection attempts
nonRunningAgentRuns.add(agentRunId);
// Notify about the error
callbacks.onError("Agent run not found in active runs");
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
2025-04-18 18:50:39 +08:00
return;
}
2025-04-18 19:27:21 +08:00
// Check for completion messages
2025-04-17 20:24:42 +08:00
if (rawData.includes('"type":"status"') && rawData.includes('"status":"completed"')) {
2025-04-18 19:27:21 +08:00
console.log(`[STREAM] Detected completion status message for ${agentRunId}`);
2025-04-18 19:27:21 +08:00
// Check for specific completion messages that indicate we should stop checking
if (rawData.includes('Run data not available for streaming') ||
rawData.includes('Stream ended with status: completed')) {
console.log(`[STREAM] Detected final completion message for ${agentRunId}, adding to non-running set`);
// Add to non-running set to prevent future reconnection attempts
nonRunningAgentRuns.add(agentRunId);
2025-03-30 14:48:57 +08:00
}
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
// Notify about the message
callbacks.onMessage(rawData);
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
2025-04-18 18:50:39 +08:00
return;
2025-04-16 13:01:57 +08:00
}
2025-04-18 19:27:21 +08:00
// Check for thread run end message
if (rawData.includes('"type":"status"') && rawData.includes('"status_type":"thread_run_end"')) {
console.log(`[STREAM] Detected thread run end message for ${agentRunId}`);
// Add to non-running set
nonRunningAgentRuns.add(agentRunId);
// Notify about the message
callbacks.onMessage(rawData);
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
return;
2025-04-16 13:01:57 +08:00
}
2025-04-18 19:27:21 +08:00
// For all other messages, just pass them through
2025-04-17 20:24:42 +08:00
callbacks.onMessage(rawData);
2025-04-18 18:50:39 +08:00
2025-04-17 20:24:42 +08:00
} catch (error) {
console.error(`[STREAM] Error handling message:`, error);
callbacks.onError(error instanceof Error ? error : String(error));
2025-03-30 14:48:57 +08:00
}
};
2025-04-18 18:50:39 +08:00
eventSource.onerror = (event) => {
2025-04-18 19:27:21 +08:00
console.log(`[STREAM] EventSource error for ${agentRunId}:`, event);
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
// Check if the agent is still running
getAgentStatus(agentRunId)
.then(status => {
if (status.status !== 'running') {
console.log(`[STREAM] Agent run ${agentRunId} is not running after error, closing stream`);
nonRunningAgentRuns.add(agentRunId);
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
} else {
console.log(`[STREAM] Agent run ${agentRunId} is still running after error, keeping stream open`);
// Let the browser handle reconnection for non-fatal errors
}
})
.catch(err => {
console.error(`[STREAM] Error checking agent status after stream error:`, err);
// Check if this is a "not found" error
const errMsg = err instanceof Error ? err.message : String(err);
const isNotFoundErr = errMsg.includes('not found') ||
errMsg.includes('404') ||
errMsg.includes('does not exist');
if (isNotFoundErr) {
console.log(`[STREAM] Agent run ${agentRunId} not found after error, closing stream`);
nonRunningAgentRuns.add(agentRunId);
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
}
// For other errors, notify but don't close the stream
callbacks.onError(errMsg);
});
2025-03-30 14:48:57 +08:00
};
2025-04-18 19:27:21 +08:00
};
2025-04-18 18:50:39 +08:00
2025-04-18 19:27:21 +08:00
// Start the stream setup
setupStream();
2025-03-30 14:48:57 +08:00
2025-04-18 19:27:21 +08:00
// Return a cleanup function
return () => {
console.log(`[STREAM] Cleanup called for ${agentRunId}`);
const stream = activeStreams.get(agentRunId);
if (stream) {
console.log(`[STREAM] Closing stream for ${agentRunId}`);
stream.close();
activeStreams.delete(agentRunId);
2025-03-30 14:48:57 +08:00
}
2025-04-18 19:27:21 +08:00
};
} catch (error) {
console.error(`[STREAM] Error setting up stream for ${agentRunId}:`, error);
callbacks.onError(error instanceof Error ? error : String(error));
callbacks.onClose();
return () => {};
}
2025-04-11 10:45:32 +08:00
};
// Sandbox API Functions
export const createSandboxFile = async (sandboxId: string, filePath: string, content: string): Promise<void> => {
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
2025-03-30 14:48:57 +08:00
2025-04-11 10:45:32 +08:00
if (!session?.access_token) {
throw new Error('No access token available');
2025-03-30 14:48:57 +08:00
}
2025-04-11 10:45:32 +08:00
2025-04-18 22:04:11 +08:00
// Use FormData to handle both text and binary content more reliably
const formData = new FormData();
formData.append('path', filePath);
2025-03-30 14:48:57 +08:00
2025-04-18 22:04:11 +08:00
// Create a Blob from the content string and append as a file
const blob = new Blob([content], { type: 'application/octet-stream' });
formData.append('file', blob, filePath.split('/').pop() || 'file');
2025-04-11 10:45:32 +08:00
const response = await fetch(`${API_URL}/sandboxes/${sandboxId}/files`, {
2025-04-18 22:04:11 +08:00
method: 'POST',
headers: {
'Authorization': `Bearer ${session.access_token}`,
},
body: formData,
});
2025-03-30 14:48:57 +08:00
2025-04-18 22:04:11 +08:00
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.error(`Error creating sandbox file: ${response.status} ${response.statusText}`, errorText);
throw new Error(`Error creating sandbox file: ${response.statusText} (${response.status})`);
2025-03-30 14:48:57 +08:00
}
2025-04-18 22:04:11 +08:00
return response.json();
} catch (error) {
console.error('Failed to create sandbox file:', error);
throw error;
}
2025-04-11 10:45:32 +08:00
};
2025-04-18 22:04:11 +08:00
// Fallback method for legacy support using JSON
export const createSandboxFileJson = async (sandboxId: string, filePath: string, content: string): Promise<void> => {
2025-04-11 10:45:32 +08:00
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
throw new Error('No access token available');
}
2025-04-18 22:04:11 +08:00
const response = await fetch(`${API_URL}/sandboxes/${sandboxId}/files/json`, {
2025-04-11 10:45:32 +08:00
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${session.access_token}`,
},
body: JSON.stringify({
path: filePath,
2025-04-18 22:04:11 +08:00
content: content
2025-04-11 10:45:32 +08:00
}),
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
2025-04-18 22:04:11 +08:00
console.error(`Error creating sandbox file (JSON): ${response.status} ${response.statusText}`, errorText);
2025-04-11 10:45:32 +08:00
throw new Error(`Error creating sandbox file: ${response.statusText} (${response.status})`);
}
return response.json();
} catch (error) {
2025-04-18 22:04:11 +08:00
console.error('Failed to create sandbox file with JSON:', error);
2025-04-11 10:45:32 +08:00
throw error;
}
};
export interface FileInfo {
name: string;
path: string;
is_dir: boolean;
size: number;
mod_time: string;
permissions?: string;
}
export const listSandboxFiles = async (sandboxId: string, path: string): Promise<FileInfo[]> => {
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
throw new Error('No access token available');
}
const url = new URL(`${API_URL}/sandboxes/${sandboxId}/files`);
url.searchParams.append('path', path);
const response = await fetch(url.toString(), {
headers: {
'Authorization': `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.error(`Error listing sandbox files: ${response.status} ${response.statusText}`, errorText);
throw new Error(`Error listing sandbox files: ${response.statusText} (${response.status})`);
}
const data = await response.json();
return data.files || [];
} catch (error) {
console.error('Failed to list sandbox files:', error);
throw error;
}
};
export const getSandboxFileContent = async (sandboxId: string, path: string): Promise<string | Blob> => {
try {
const supabase = createClient();
const { data: { session } } = await supabase.auth.getSession();
if (!session?.access_token) {
throw new Error('No access token available');
}
const url = new URL(`${API_URL}/sandboxes/${sandboxId}/files/content`);
url.searchParams.append('path', path);
const response = await fetch(url.toString(), {
headers: {
'Authorization': `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.error(`Error getting sandbox file content: ${response.status} ${response.statusText}`, errorText);
throw new Error(`Error getting sandbox file content: ${response.statusText} (${response.status})`);
}
// Check if it's a text file or binary file based on content-type
const contentType = response.headers.get('content-type');
if (contentType && contentType.includes('text') || contentType?.includes('application/json')) {
return await response.text();
} else {
return await response.blob();
}
} catch (error) {
console.error('Failed to get sandbox file content:', error);
throw error;
}
2025-04-18 18:50:39 +08:00
};