- Add SessionManager class to handle PTY sessions with WebSocket connections. - Implement methods for creating, retrieving, and destroying sessions. - Handle PTY output and WebSocket messages for terminal interaction. - Ensure graceful session destruction and cleanup. feat: initialize web application with Next.js and Tailwind CSS - Create initial Next.js application structure with TypeScript support. - Set up Tailwind CSS for styling with custom theme configurations. - Add ESLint configuration for code quality and consistency. feat: implement chat API and UI components - Create chat API route to handle chat requests and responses. - Develop chat layout with sidebar, header, chat window, and input components. - Integrate Zustand for state management of conversations and messages. - Add utility functions for formatting dates and managing class names. chore: add environment variables and configuration files - Create .env.example for environment variable setup. - Add configuration files for PostCSS, Tailwind CSS, and TypeScript. - Set up package.json with necessary dependencies and scripts for development.
17 lines
517 B
TypeScript
17 lines
517 B
TypeScript
export const MODELS = [
|
|
{ id: "claude-opus-4-6", label: "Claude Opus 4.6", description: "Most capable" },
|
|
{ id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6", description: "Balanced" },
|
|
{ id: "claude-haiku-4-5-20251001", label: "Claude Haiku 4.5", description: "Fastest" },
|
|
] as const;
|
|
|
|
export const DEFAULT_MODEL = "claude-sonnet-4-6";
|
|
|
|
export const API_ROUTES = {
|
|
chat: "/api/chat",
|
|
stream: "/api/stream",
|
|
} as const;
|
|
|
|
export const MAX_MESSAGE_LENGTH = 100_000;
|
|
|
|
export const STREAMING_CHUNK_SIZE = 64;
|