Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -14,7 +14,6 @@ short_description: Python_Tutor_Bot
|
|
14 |
|
15 |
An interactive Python tutoring assistant hosted on Hugging Face Spaces. This bot helps you learn Python concepts, debug code, and get explanations for programming questions using AI-powered text generation.
|
16 |
|
17 |
-
 *Replace with actual screenshot URL*
|
18 |
|
19 |
## Features β¨
|
20 |
- Get explanations for Python concepts
|
@@ -41,7 +40,6 @@ How to reverse a string in Python?
|
|
41 |
|
42 |
**Output:**
|
43 |
You can reverse a string using slicing:
|
44 |
-
|
45 |
text = "hello world"
|
46 |
reversed_text = text[::-1]
|
47 |
print(reversed_text) # Output: "dlrow olleh"
|
@@ -49,11 +47,8 @@ print(reversed_text) # Output: "dlrow olleh"
|
|
49 |
|
50 |
Tech Stack π οΈ
|
51 |
π Built with Gradio
|
52 |
-
|
53 |
π€ Hosted on Hugging Face Spaces
|
54 |
-
|
55 |
π§ Backed by transformers pipeline with GPT-2 model
|
56 |
-
|
57 |
π Python 3.8+
|
58 |
|
59 |
Note: This bot uses AI-generated content. Always verify critical programming concepts through official documentation.
|
|
|
14 |
|
15 |
An interactive Python tutoring assistant hosted on Hugging Face Spaces. This bot helps you learn Python concepts, debug code, and get explanations for programming questions using AI-powered text generation.
|
16 |
|
|
|
17 |
|
18 |
## Features β¨
|
19 |
- Get explanations for Python concepts
|
|
|
40 |
|
41 |
**Output:**
|
42 |
You can reverse a string using slicing:
|
|
|
43 |
text = "hello world"
|
44 |
reversed_text = text[::-1]
|
45 |
print(reversed_text) # Output: "dlrow olleh"
|
|
|
47 |
|
48 |
Tech Stack π οΈ
|
49 |
π Built with Gradio
|
|
|
50 |
π€ Hosted on Hugging Face Spaces
|
|
|
51 |
π§ Backed by transformers pipeline with GPT-2 model
|
|
|
52 |
π Python 3.8+
|
53 |
|
54 |
Note: This bot uses AI-generated content. Always verify critical programming concepts through official documentation.
|