S4 is a fully-featured semantic search service with multi-tenant support, designed to help organizations integrate powerful semantic search capabilities into their applications.
- Semantic Search: Advanced vector-based search powered by OpenAI embeddings
- Multi-tenant Architecture: Securely isolate data and configurations for different clients
- Document Management: Upload, process, and search through various document types
- API-First Design: RESTful API for easy integration with any application
- User-friendly Dashboard: Modern React-based UI for document management
- Admin Portal: Comprehensive admin interface for tenant management and analytics
- Subscription Plans: Built-in subscription management for different usage tiers
- Scalable Infrastructure: Deployable on AWS with multiple hosting options
-
Clone the repository:
git clone https://github.com/your-org/s4.git cd s4
-
Set up your environment variables:
cp .env.example .env # Edit .env with your configuration
-
Start the backend server:
cd server python server.py
-
In a separate terminal, start the frontend:
cd s4-ui npm install # Only needed first time npm start
-
Access the application:
- Backend API: http://localhost:8000
- Frontend UI: http://localhost:3000
S4 consists of two main components:
-
Backend API (Python FastAPI):
- RESTful API for document and tenant management
- Embedding generation and semantic search
- Storage integration with S3
- Multi-tenant data isolation
-
Frontend UI (React):
- User dashboard for document management
- Search interface with result visualization
- Admin portal for system management
- Authentication and subscription management
S4 supports multiple deployment methods:
- AWS Amplify: For frontend deployment
- AWS ECS: For backend deployment
- AWS Elastic Beanstalk: Alternative production deployment
- Docker: For containerized deployment
See the Deployment Guide for detailed instructions.
The S4 API provides endpoints for:
- Document management (upload, delete, search)
- User authentication and tenant management
- Subscription and plan management
- System administration and analytics
API documentation is available at http://localhost:8000/docs
when running locally.
The Admin Portal provides a comprehensive interface for:
- Managing tenants and their subscription plans
- Monitoring system usage and analytics
- Managing system-wide settings
- Troubleshooting and system maintenance
Access the Admin Portal at http://localhost/admin/login
with your admin API key.
S4 can be configured using environment variables. See the Deployment Guide for a complete list of configuration options. A template for environment variables is available in the .env.example
file.
The backend is built with Python FastAPI:
cd server
pip install -r requirements.txt
python server.py
You can also run the server with hot reloading during development:
cd server
python -m uvicorn server:app --reload
The frontend is built with React:
cd s4-ui
npm install
npm start
Run backend tests:
cd s4
pytest
Run frontend tests:
cd s4-ui
npm test
The S4 repository is organized as follows:
/
├── docs/ # Documentation
│ ├── architecture/ # Architecture documentation
│ ├── deployment/ # Deployment guides
│ └── security/ # Security documentation
├── deployment/ # Deployment configurations
│ ├── aws/ # AWS-specific configurations
│ ├── docker/ # Docker configurations
│ └── heroku/ # Heroku configurations
├── scripts/ # Utility scripts
│ ├── deploy.sh # Unified deployment script
│ └── ... # Other utility scripts
├── server/ # Server implementations
│ └── simple_server.py # Simple FastAPI server
├── s4/ # Core Python package
│ ├── api/ # API endpoints
│ ├── auth/ # Authentication modules
│ ├── db/ # Database models and connections
│ ├── indexer/ # Document indexing and search
│ ├── models/ # Data models
│ ├── service/ # Service layer
│ └── storage/ # Storage interfaces
├── s4-ui/ # Frontend React application
│ ├── public/ # Static assets
│ └── src/ # React source code
├── tests/ # Test suite
│ └── auth/ # Authentication tests
└── .env.example # Environment variable template
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- OpenAI for providing the embedding models
- AWS for hosting infrastructure
- All contributors who have helped shape this project