Upload 4 files
Browse files- README.md +5 -5
- app.py +10 -49
- config.json +6 -6
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🤖
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
@@ -8,12 +8,12 @@ sdk_version: 5.38.0
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
-
short_description: "
|
12 |
---
|
13 |
|
14 |
-
#
|
15 |
|
16 |
-
|
17 |
|
18 |
## Quick Deploy to HuggingFace Spaces
|
19 |
|
@@ -55,7 +55,7 @@ Assistant for Foundations of Data Science at CCNY
|
|
55 |
|
56 |
## Configuration
|
57 |
|
58 |
-
- **Model**:
|
59 |
- **Temperature**: 0.7
|
60 |
- **Max Tokens**: 750
|
61 |
- **API Key Variable**: OPENROUTER_API_KEY
|
|
|
1 |
---
|
2 |
+
title: My Custom Space
|
3 |
emoji: 🤖
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
+
short_description: " sadfsdf sadfs dfas. sfadfasdff fsdafsdfasdf. d"
|
12 |
---
|
13 |
|
14 |
+
# My Custom Space
|
15 |
|
16 |
+
sadfsdf sadfs dfas. sfadfasdff fsdafsdfasdf. d
|
17 |
|
18 |
## Quick Deploy to HuggingFace Spaces
|
19 |
|
|
|
55 |
|
56 |
## Configuration
|
57 |
|
58 |
+
- **Model**: anthropic/claude-3.5-haiku
|
59 |
- **Temperature**: 0.7
|
60 |
- **Max Tokens**: 750
|
61 |
- **API Key Variable**: OPENROUTER_API_KEY
|
app.py
CHANGED
@@ -10,50 +10,11 @@ import urllib.parse
|
|
10 |
|
11 |
|
12 |
# Configuration
|
13 |
-
SPACE_NAME = "
|
14 |
-
SPACE_DESCRIPTION = "
|
15 |
-
SYSTEM_PROMPT = """You are a
|
16 |
-
|
17 |
-
|
18 |
-
* Course Navigation: Help students locate and understand syllabus information, assignment details, schedules, readings, and course materials
|
19 |
-
* Learning Facilitation: Guide students toward understanding concepts through Socratic questioning and scaffolding rather than providing direct answers
|
20 |
-
* Administrative Support: Provide accurate information about deadlines, exam dates, office hours, and course policies
|
21 |
-
|
22 |
-
Response Guidelines
|
23 |
-
* Precision First: Be exact with all dates, times, deadlines, and scheduling information
|
24 |
-
* Warm Tone: Use encouraging, supportive language that builds student confidence
|
25 |
-
* Pedagogical Approach: Never provide direct answers to assignments or assessments; instead, ask guiding questions that help students discover solutions independently
|
26 |
-
* Scope Boundaries: Only address questions related to this specific course (CSC 10800 R) - syllabus, schedule, assignments, readings, and general data science learning support
|
27 |
-
* Specific Protocols: For questions about grades, redirect students to contact Professor Muhlbauer at the email provided in the course materials for all related inquiries: [email protected]
|
28 |
-
|
29 |
-
For Scheduling/Deadlines:
|
30 |
-
* Always cross-reference the most current course schedule
|
31 |
-
* Provide specific dates and times
|
32 |
-
* Remind students of upcoming deadlines proactively when relevant
|
33 |
-
* NB: If {{today}} is after the last date of the course, then do NOT make up new dates based on Tue/Thu schedule of the class
|
34 |
-
|
35 |
-
For Conceptual Questions:
|
36 |
-
* Use Socratic method to guide discovery
|
37 |
-
* Provide analogies or real-world applications to clarify abstract concepts
|
38 |
-
* Reference specific course materials where students can find more information
|
39 |
-
* Encourage active engagement with the material
|
40 |
-
|
41 |
-
Uncertainty Protocol:
|
42 |
-
When uncertain about any information:
|
43 |
-
* Explicitly state your uncertainty
|
44 |
-
* Direct students to verify information through official course materials
|
45 |
-
* Suggest contacting Professor Muhlbauer for clarification
|
46 |
-
* Provide general guidance on where to find authoritative information
|
47 |
-
|
48 |
-
Engagement Style:
|
49 |
-
* Begin responses with acknowledgment of the student's question
|
50 |
-
* Use warm, encouraging language
|
51 |
-
* Ask follow-up questions to better understand student needs
|
52 |
-
* Celebrate student progress and effort
|
53 |
-
|
54 |
-
Remember: Your goal is to support student learning and success while maintaining the pedagogical integrity of the course. You are a learning facilitator, not an answer provider."""
|
55 |
-
MODEL = "google/gemini-2.0-flash-001"
|
56 |
-
GROUNDING_URLS = ["https://zmuhls.github.io/ccny-data-science/schedule/", "https://zmuhls.github.io/ccny-data-science/syllabus/", "https://zmuhls.github.io/ccny-data-science/portfolio/", "https://zmuhls.github.io/ccny-data-science/activities/"]
|
57 |
# Get access code from environment variable for security
|
58 |
# If SPACE_ACCESS_CODE is not set, no access control is applied
|
59 |
ACCESS_CODE = os.environ.get("SPACE_ACCESS_CODE")
|
@@ -544,10 +505,6 @@ with gr.Blocks(title=SPACE_NAME) as demo:
|
|
544 |
gr.Markdown(f"# {SPACE_NAME}")
|
545 |
gr.Markdown(SPACE_DESCRIPTION)
|
546 |
|
547 |
-
# Configuration status (always visible)
|
548 |
-
with gr.Accordion("📊 Configuration Status", open=not API_KEY_VALID):
|
549 |
-
gr.Markdown(get_configuration_status())
|
550 |
-
|
551 |
# Access code section (shown only if ACCESS_CODE is set)
|
552 |
with gr.Column(visible=(ACCESS_CODE is not None)) as access_section:
|
553 |
gr.Markdown("### 🔐 Access Required")
|
@@ -567,7 +524,7 @@ with gr.Blocks(title=SPACE_NAME) as demo:
|
|
567 |
fn=store_and_generate_response, # Use wrapper function to store history
|
568 |
title="", # Title already shown above
|
569 |
description="", # Description already shown above
|
570 |
-
examples=['
|
571 |
type="messages" # Use modern message format for better compatibility
|
572 |
)
|
573 |
|
@@ -581,6 +538,10 @@ with gr.Blocks(title=SPACE_NAME) as demo:
|
|
581 |
export_current_conversation,
|
582 |
outputs=[export_file]
|
583 |
)
|
|
|
|
|
|
|
|
|
584 |
|
585 |
# Connect access verification
|
586 |
if ACCESS_CODE is not None:
|
|
|
10 |
|
11 |
|
12 |
# Configuration
|
13 |
+
SPACE_NAME = "My Custom Space"
|
14 |
+
SPACE_DESCRIPTION = " sadfsdf sadfs dfas. sfadfasdff fsdafsdfasdf. d"
|
15 |
+
SYSTEM_PROMPT = """You are a pedagogically-minded academic assistant designed for introductory courses. Your approach follows constructivist learning principles: build on students' prior knowledge, scaffold complex concepts through graduated questioning, and use Socratic dialogue to guide discovery. Provide concise, evidence-based explanations that connect theory to lived experiences. Each response should model critical thinking by acknowledging multiple perspectives, identifying assumptions, and revealing conceptual relationships. Conclude with open-ended questions that promote higher-order thinking—analysis, synthesis, or evaluation—rather than recall."""
|
16 |
+
MODEL = "anthropic/claude-3.5-haiku"
|
17 |
+
GROUNDING_URLS = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
# Get access code from environment variable for security
|
19 |
# If SPACE_ACCESS_CODE is not set, no access control is applied
|
20 |
ACCESS_CODE = os.environ.get("SPACE_ACCESS_CODE")
|
|
|
505 |
gr.Markdown(f"# {SPACE_NAME}")
|
506 |
gr.Markdown(SPACE_DESCRIPTION)
|
507 |
|
|
|
|
|
|
|
|
|
508 |
# Access code section (shown only if ACCESS_CODE is set)
|
509 |
with gr.Column(visible=(ACCESS_CODE is not None)) as access_section:
|
510 |
gr.Markdown("### 🔐 Access Required")
|
|
|
524 |
fn=store_and_generate_response, # Use wrapper function to store history
|
525 |
title="", # Title already shown above
|
526 |
description="", # Description already shown above
|
527 |
+
examples=['How is this relevant?'],
|
528 |
type="messages" # Use modern message format for better compatibility
|
529 |
)
|
530 |
|
|
|
538 |
export_current_conversation,
|
539 |
outputs=[export_file]
|
540 |
)
|
541 |
+
|
542 |
+
# Configuration status (always visible)
|
543 |
+
with gr.Accordion("📊 Configuration Status", open=not API_KEY_VALID):
|
544 |
+
gr.Markdown(get_configuration_status())
|
545 |
|
546 |
# Connect access verification
|
547 |
if ACCESS_CODE is not None:
|
config.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
{
|
2 |
-
"name": "
|
3 |
-
"description": "
|
4 |
-
"system_prompt": "You are a
|
5 |
-
"model": "
|
6 |
"api_key_var": "OPENROUTER_API_KEY",
|
7 |
"temperature": 0.7,
|
8 |
"max_tokens": 750,
|
9 |
-
"examples": "['
|
10 |
-
"grounding_urls": "[
|
11 |
"enable_dynamic_urls": true
|
12 |
}
|
|
|
1 |
{
|
2 |
+
"name": "My Custom Space",
|
3 |
+
"description": " sadfsdf sadfs dfas. sfadfasdff fsdafsdfasdf. d",
|
4 |
+
"system_prompt": "You are a pedagogically-minded academic assistant designed for introductory courses. Your approach follows constructivist learning principles: build on students' prior knowledge, scaffold complex concepts through graduated questioning, and use Socratic dialogue to guide discovery. Provide concise, evidence-based explanations that connect theory to lived experiences. Each response should model critical thinking by acknowledging multiple perspectives, identifying assumptions, and revealing conceptual relationships. Conclude with open-ended questions that promote higher-order thinking\u2014analysis, synthesis, or evaluation\u2014rather than recall.",
|
5 |
+
"model": "anthropic/claude-3.5-haiku",
|
6 |
"api_key_var": "OPENROUTER_API_KEY",
|
7 |
"temperature": 0.7,
|
8 |
"max_tokens": 750,
|
9 |
+
"examples": "['How is this relevant?']",
|
10 |
+
"grounding_urls": "[]",
|
11 |
"enable_dynamic_urls": true
|
12 |
}
|