Welcome to the i7E repository! This is where I am building and integrating different AI providers and creating a playground for AI experimentation and development.
The repository is organized into two main parts:
- Client: This is the frontend of the application, built with Next.js.
- Server: This is the backend of the application, built with FastAPI (Python).
/client
: Contains the Next.js frontend code./server
: Contains the FastAPI backend code.
The frontend is deployed and accessible at: https://i7e-client.vercel.app/
I am continuously building and adding various development tools to enhance the functionality and usability of this project. Stay tuned for more updates!
To get started with the project, follow these steps:
- Clone the repository:
git clone [email protected]:OmGuptaIND/i7e.git
- Navigate to the project directory:
cd i7e
- Follow the setup instructions for both the client and server directories.
Navigate to the /client
directory and install the dependencies:
cd client
bun install
Start the development server:
bun run dev
Navigate to the /server
directory and create a virtual environment using Poetry. If you don't have Poetry installed, you can follow the instructions here.
cd server
poetry install
Make sure make
is installed on your system. If make
is installed, you can start the server with:
make run
If make
is not installed, you can start the server with:
poetry run python main.py
Thank you for checking out i7E! Happy coding!