afia1naseem2 commited on
Commit
1c16165
Β·
verified Β·
1 Parent(s): cacbb3d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -7
README.md CHANGED
@@ -1,14 +1,75 @@
1
  ---
2
- title: Ideation Agent
3
- emoji: πŸš€
4
- colorFrom: yellow
5
- colorTo: red
6
  sdk: gradio
7
- sdk_version: 5.35.0
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
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)