Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,14 +1,75 @@
|
|
| 1 |
---
|
| 2 |
-
title: Ideation
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
-
short_description: Ideation Agent is an AI-powered tool to generate ideas.
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Ideation Project
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.27.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
+
## π iBoothMe Event Ideation App
|
| 14 |
+
|
| 15 |
+
This AI-powered tool helps experiential event planners generate **creative, tech-enhanced event concepts** using iBoothMe solutions such as:
|
| 16 |
+
|
| 17 |
+
- πΈ AI Photo Booths
|
| 18 |
+
- π§ Audio/Video Booths
|
| 19 |
+
- π§Έ Personalized Giveaways
|
| 20 |
+
- π― Smart Vending Machines
|
| 21 |
+
- π¬ Immersive Storytelling
|
| 22 |
+
|
| 23 |
+
Built with **Gradio** for a fast and intuitive web UI, and powered by **OpenAI GPT-4**, it analyzes your event description and generates 6β7 unique, high-impact ideas tailored to your theme.
|
| 24 |
+
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
## π Features
|
| 28 |
+
|
| 29 |
+
- π Extracts smart keywords from your event description
|
| 30 |
+
- π Searches for similar inspiration online
|
| 31 |
+
- π§ Generates original event ideas using GPT-4
|
| 32 |
+
- π¨ Easy-to-use Gradio web interface
|
| 33 |
+
- π‘οΈ Automatically ignores sensitive data like `.env` and `venv` via `.gitignore`
|
| 34 |
+
|
| 35 |
+
---
|
| 36 |
+
|
| 37 |
+
## π οΈ Setup Instructions
|
| 38 |
+
|
| 39 |
+
1. **Clone the Repository**
|
| 40 |
+
```bash
|
| 41 |
+
git clone https://github.com/afianaseem/Ideation_project.git
|
| 42 |
+
cd Ideation_project
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
2. Create and Activate a Virtual Environment
|
| 46 |
+
```bash
|
| 47 |
+
python -m venv venv
|
| 48 |
+
venv\Scripts\activate # On Windows
|
| 49 |
+
# Or: source venv/bin/activate # On Mac/Linux
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
3. Install Requirements
|
| 53 |
+
```bash
|
| 54 |
+
pip install -r requirements.txt
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
4. Add your OpenAI API Key
|
| 58 |
+
Create a .env file in the root directory:
|
| 59 |
+
```bash
|
| 60 |
+
OPENAI_API_KEY=your_openai_key_here
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
5. Run the App
|
| 64 |
+
```bash
|
| 65 |
+
python app.py
|
| 66 |
+
```
|
| 67 |
+
Then open the Gradio link in your browser
|
| 68 |
+
|
| 69 |
+
## π¦ Requirements
|
| 70 |
+
```nginx
|
| 71 |
+
gradio
|
| 72 |
+
openai
|
| 73 |
+
python-dotenv
|
| 74 |
+
```
|
| 75 |
+
(Already listed in requirements.txt)
|