Spaces:
Sleeping
Sleeping
Kushagra Gaur commited on
Commit ·
ec20a4c
1
Parent(s): d5553ef
Initial clean commit for EEE AI
Browse files- README.md +14 -0
- app.py +7 -0
- desktop.ini +4 -0
README.md
CHANGED
|
@@ -12,10 +12,17 @@ hf_oauth_scopes:
|
|
| 12 |
- inference-api
|
| 13 |
---
|
| 14 |
|
|
|
|
| 15 |
# 🎓 EEE_AI: Specialized Pedagogical Agent
|
| 16 |
### Powered by Llama-3.1-8B-Instant & Groq LPU™
|
| 17 |
|
| 18 |
**EEE_AI** is an AI-driven tutoring system designed to assist students with the fundamentals of **Electrical and Electronics Engineering (EEE)**. This project serves as a bridge between high-performance LLM engineering and domain-specific educational technology.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
---
|
| 21 |
|
|
@@ -39,10 +46,17 @@ As an AIML student, I built this space to explore the limits of **low-latency in
|
|
| 39 |
|
| 40 |
## 📖 Sample Interactions
|
| 41 |
> **User:** "Explain KVL in simple terms."
|
|
|
|
| 42 |
> **EEE_AI:** [Provides explanation] + "Would you like a practice circuit problem to test this law?"
|
| 43 |
|
| 44 |
> **User:** "What's the best movie to watch tonight?"
|
| 45 |
> **EEE_AI:** "I am focused on your engineering success! Let's get back to EEE—perhaps we can discuss how Signal Processing is used in movie audio instead?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
|
| 47 |
---
|
| 48 |
## 👷 About the Developer
|
|
|
|
| 12 |
- inference-api
|
| 13 |
---
|
| 14 |
|
| 15 |
+
<<<<<<< HEAD
|
| 16 |
# 🎓 EEE_AI: Specialized Pedagogical Agent
|
| 17 |
### Powered by Llama-3.1-8B-Instant & Groq LPU™
|
| 18 |
|
| 19 |
**EEE_AI** is an AI-driven tutoring system designed to assist students with the fundamentals of **Electrical and Electronics Engineering (EEE)**. This project serves as a bridge between high-performance LLM engineering and domain-specific educational technology.
|
| 20 |
+
=======
|
| 21 |
+
# 🎓 EEE-Educator: Specialized Pedagogical Agent
|
| 22 |
+
### Powered by Llama-3.1-8B-Instant & Groq LPU™
|
| 23 |
+
|
| 24 |
+
**EEE-Educator** is an AI-driven tutoring system designed to assist students with the fundamentals of **Electrical and Electronics Engineering (EEE)**. This project serves as a bridge between high-performance LLM engineering and domain-specific educational technology.
|
| 25 |
+
>>>>>>> 552bc50 (Initial clean commit for EEE AI)
|
| 26 |
|
| 27 |
---
|
| 28 |
|
|
|
|
| 46 |
|
| 47 |
## 📖 Sample Interactions
|
| 48 |
> **User:** "Explain KVL in simple terms."
|
| 49 |
+
<<<<<<< HEAD
|
| 50 |
> **EEE_AI:** [Provides explanation] + "Would you like a practice circuit problem to test this law?"
|
| 51 |
|
| 52 |
> **User:** "What's the best movie to watch tonight?"
|
| 53 |
> **EEE_AI:** "I am focused on your engineering success! Let's get back to EEE—perhaps we can discuss how Signal Processing is used in movie audio instead?"
|
| 54 |
+
=======
|
| 55 |
+
> **EEE-AI:** [Provides explanation] + "Would you like a practice circuit problem to test this law?"
|
| 56 |
+
|
| 57 |
+
> **User:** "What's the best movie to watch tonight?"
|
| 58 |
+
> **EEE-AI:** "I am focused on your engineering success! Let's get back to EEE—perhaps we can discuss how Signal Processing is used in movie audio instead?"
|
| 59 |
+
>>>>>>> 552bc50 (Initial clean commit for EEE AI)
|
| 60 |
|
| 61 |
---
|
| 62 |
## 👷 About the Developer
|
app.py
CHANGED
|
@@ -3,7 +3,10 @@ import os
|
|
| 3 |
from openai import OpenAI
|
| 4 |
from dotenv import load_dotenv
|
| 5 |
|
|
|
|
| 6 |
|
|
|
|
|
|
|
| 7 |
load_dotenv()
|
| 8 |
|
| 9 |
client = OpenAI(
|
|
@@ -11,7 +14,11 @@ client = OpenAI(
|
|
| 11 |
api_key=os.getenv("GROQ_API_KEY")
|
| 12 |
)
|
| 13 |
|
|
|
|
| 14 |
system_prompt = "You are an assistant by the name EEE_AI based on Llama 3.1:8B Instant that is a University Level Expert in BEEE which is Basics of Electrical and Electronics Engineering \
|
|
|
|
|
|
|
|
|
|
| 15 |
and provides detail university level answers to questions asked by students, you make sure the questions are relevent to the given syllabus or not.\
|
| 16 |
Also as you are an expert so you explain like an expert too, You first explain in vast detail and then provide a short summary of all you said \
|
| 17 |
And also suggest appropriate diagrams for students to draw\
|
|
|
|
| 3 |
from openai import OpenAI
|
| 4 |
from dotenv import load_dotenv
|
| 5 |
|
| 6 |
+
<<<<<<< HEAD
|
| 7 |
|
| 8 |
+
=======
|
| 9 |
+
>>>>>>> 552bc50 (Initial clean commit for EEE AI)
|
| 10 |
load_dotenv()
|
| 11 |
|
| 12 |
client = OpenAI(
|
|
|
|
| 14 |
api_key=os.getenv("GROQ_API_KEY")
|
| 15 |
)
|
| 16 |
|
| 17 |
+
<<<<<<< HEAD
|
| 18 |
system_prompt = "You are an assistant by the name EEE_AI based on Llama 3.1:8B Instant that is a University Level Expert in BEEE which is Basics of Electrical and Electronics Engineering \
|
| 19 |
+
=======
|
| 20 |
+
system_prompt = "You are an assistant by the name Llama3.2 that is an expert in BEEE which is Basics of Electrical and Electronics Engineering \
|
| 21 |
+
>>>>>>> 552bc50 (Initial clean commit for EEE AI)
|
| 22 |
and provides detail university level answers to questions asked by students, you make sure the questions are relevent to the given syllabus or not.\
|
| 23 |
Also as you are an expert so you explain like an expert too, You first explain in vast detail and then provide a short summary of all you said \
|
| 24 |
And also suggest appropriate diagrams for students to draw\
|
desktop.ini
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[ViewState]
|
| 2 |
+
Mode=
|
| 3 |
+
Vid=
|
| 4 |
+
FolderType=Generic
|