File tree Expand file tree Collapse file tree 4 files changed +30
-2
lines changed
Expand file tree Collapse file tree 4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1- # codebase-genius
2- My first Agent Documentation AI project
1+ # Codebase Genius 🤖
2+
3+ Hello! This is my Agentic AI Documentation project!
4+
5+ It helps People understand code.
Original file line number Diff line number Diff line change 1+ # This is our main controller
2+ print ("Welcome to Codebase Genius!" )
3+ print ("I help document your code." )
4+
5+ def analyze_code ():
6+ print ("I'm analyzing your code..." )
7+ return "Analysis complete!"
8+
9+ # Let's test it
10+ result = analyze_code ()
11+ print (result )
Original file line number Diff line number Diff line change 1+ print ("=== Codebase Genius Frontend ===" )
2+ print ("This is where users will interact!" )
3+
4+ name = input ("What's your name? " )
5+ print (f"Hello { name } ! Ready to document some code?" )
6+
7+ print ("1. Upload code" )
8+ print ("2. View documentation" )
9+ print ("3. Exit" )
10+
11+ choice = input ("Choose (1-3): " )
12+ print (f"You chose option { choice } " )
Original file line number Diff line number Diff line change 1+ streamlit == 1.28.0
2+ python-dotenv == 1.0.0
You can’t perform that action at this time.
0 commit comments