This project is a web application with a conversational interface powered by AI, allowing users to input prompts, receive AI-generated responses, and manage their conversation history.
- Clone the repository:
git clone https://github.com/yourusername/your-repo-name.git
- Navigate to the project directory:
cd your-repo-name
- Install dependencies:
npm install
- Start the development server:
npm start
Open your browser and navigate to http://localhost:3000
.
your-repo-name/
├── public/
├── src/
│ ├── assets/
│ ├── components/
│ │ ├── Main/
│ │ ├── Sidebar/
│ ├── context/
│ │ ├── Context.js
│ ├── config/
│ │ ├── Hepha.js
│ ├── App.js
│ ├── index.js
├── package.json
├── README.md
- Main Component (
src/components/Main/Main.js
): Primary user interface for interactions. - Sidebar Component (
src/components/Sidebar/Sidebar.js
): Navigation and recent prompt management. - Context (
src/context/Context.js
): Global state management.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -m 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Create a Pull Request.