azamat commited on
Commit
6279d79
·
1 Parent(s): 0b07780

Added examples

Browse files
Files changed (1) hide show
  1. app.py +26 -1
app.py CHANGED
@@ -4,6 +4,29 @@ from weaviate_explorer import WeaviateExplorer
4
 
5
  weaviate_explorer = WeaviateExplorer()
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  def search(query):
8
  shorts = weaviate_explorer.explore(query)
9
  download_url = f"https://drive.google.com/uc?id={shorts[0]['link'].split('/')[-2]}"
@@ -23,5 +46,7 @@ iface = gr.Interface(fn=search,
23
  inputs=input_text,
24
  outputs=[video, output_text],
25
  title=title,
26
- description=description)
 
 
27
  iface.launch()
 
4
 
5
  weaviate_explorer = WeaviateExplorer()
6
 
7
+ examples = [
8
+ "Is my idea truly unique and solving a real problem?",
9
+ "How can I validate my idea with potential customers?",
10
+ "How much funding will I need to get started?",
11
+ "What are the potential revenue streams and business models?",
12
+ "How should I structure my team and distribute equity?",
13
+ "What are the must-have features for my minimum viable product (MVP)?",
14
+ "Should I outsource any development work or hire in-house talent?",
15
+ "What metrics should I track to measure success and growth?",
16
+ "What are the key elements of a compelling pitch deck and investor presentation?",
17
+ "How can I negotiate fair and favorable terms with investors?",
18
+ "How can I generate early traction and attract my first customers?",
19
+ "What marketing and advertising channels should I prioritize?",
20
+ "How can I gather and incorporate customer feedback for product improvement?",
21
+ "What are the key areas I need to focus on for scaling (product development, hiring, operations, etc.)?",
22
+ "What are the different types of funding rounds (Seed, Series A, B, C, etc.), and when should I pursue them?",
23
+ "How can I effectively communicate progress and updates to investors?",
24
+ "How can I optimize my pricing and revenue models for profitability?",
25
+ "How can I develop and strengthen my leadership skills?",
26
+ "How can I maintain a healthy work-life balance and avoid burnout?",
27
+ "How can I maintain a strong company culture and values as we scale?"
28
+ ]
29
+
30
  def search(query):
31
  shorts = weaviate_explorer.explore(query)
32
  download_url = f"https://drive.google.com/uc?id={shorts[0]['link'].split('/')[-2]}"
 
46
  inputs=input_text,
47
  outputs=[video, output_text],
48
  title=title,
49
+ description=description,
50
+ examples=[[e] for e in examples],
51
+ cache_examples="lazy")
52
  iface.launch()