-
-
Notifications
You must be signed in to change notification settings - Fork 983
Expand file tree
/
Copy pathstartup_mentorship_program.py
More file actions
95 lines (80 loc) · 2.53 KB
/
Copy pathstartup_mentorship_program.py
File metadata and controls
95 lines (80 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
from swarms import Agent
from swarms.structs.multi_agent_debates import MentorshipSession
# Initialize the mentor and mentee
startup_mentor = Agent(
agent_name="Startup-Mentor",
agent_description="Experienced startup founder and mentor",
system_prompt="""You are a successful startup founder and mentor with expertise in:
- Business model development
- Product-market fit
- Growth strategy
- Fundraising
- Team building
- Go-to-market execution
Guide mentees through startup challenges while sharing practical insights.""",
model_name="claude-3-sonnet-20240229",
)
startup_founder = Agent(
agent_name="Startup-Founder",
agent_description="Early-stage startup founder seeking guidance",
system_prompt="""You are an early-stage startup founder working on:
- AI-powered healthcare diagnostics platform
- B2B SaaS business model
- Initial product development
- Market validation
- Team expansion
Seek guidance while being open to feedback and willing to learn.""",
model_name="claude-3-sonnet-20240229",
)
# Initialize the mentorship session
mentorship = MentorshipSession(
mentor=startup_mentor,
mentee=startup_founder,
session_count=3,
include_feedback=True,
output_type="str-all-except-first",
)
# Mentorship focus areas
mentorship_goals = """
Startup Development Focus Areas
Company Overview:
HealthAI - AI-powered medical imaging diagnostics platform
Stage: Pre-seed, MVP in development
Team: 3 technical co-founders
Current funding: Bootstrap + small angel round
Key Challenges:
1. Product Development
- MVP feature prioritization
- Technical architecture decisions
- Regulatory compliance requirements
- Development timeline planning
2. Market Strategy
- Target market segmentation
- Pricing model development
- Competition analysis
- Go-to-market planning
3. Business Development
- Hospital partnership strategy
- Clinical validation approach
- Revenue model refinement
- Sales cycle planning
4. Fundraising Preparation
- Pitch deck development
- Financial projections
- Investor targeting
- Valuation considerations
5. Team Building
- Key hires identification
- Recruitment strategy
- Equity structure
- Culture development
Specific Goals:
- Finalize MVP feature set
- Develop 12-month roadmap
- Create fundraising strategy
- Design go-to-market plan
- Build initial sales pipeline
"""
# Execute the mentorship session
mentorship_output = mentorship.run(mentorship_goals)
print(mentorship_output)