Skip to content

Commit 1c2321c

Browse files
Add files via upload
1 parent 304d67e commit 1c2321c

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
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.

backend/main.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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)

frontend/app.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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}")

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
streamlit==1.28.0
2+
python-dotenv==1.0.0

0 commit comments

Comments
 (0)