Compare commits
No commits in common. "dd3d8c74dd58a1cc6d6b18d22108819519aaf9c3" and "20e502e0cb8ff0fca5825ae5483a38d2fedb3ee5" have entirely different histories.
dd3d8c74dd
...
20e502e0cb
5 changed files with 49 additions and 6 deletions
|
|
@ -11,6 +11,7 @@ sites_root,/tmp
|
||||||
# LLM CONFIGURATION
|
# LLM CONFIGURATION
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
llm-key,none
|
llm-key,none
|
||||||
|
llm-url,http://localhost:8081
|
||||||
llm-model,../../../../data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf
|
llm-model,../../../../data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf
|
||||||
,
|
,
|
||||||
llm-cache,false
|
llm-cache,false
|
||||||
|
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
name,value
|
name,value
|
||||||
Answer Mode,tool
|
Answer Mode,tool
|
||||||
Start Dialog,start
|
Start Dialog,start
|
||||||
Theme Color, indigo
|
Theme Color, indigo
|
||||||
public,true
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ sites_root,/tmp
|
||||||
# LLM CONFIGURATION
|
# LLM CONFIGURATION
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
llm-key,none
|
llm-key,none
|
||||||
|
llm-url,http://localhost:8081
|
||||||
llm-model,../../../../data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf
|
llm-model,../../../../data/llm/DeepSeek-R1-Distill-Qwen-1.5B-Q3_K_M.gguf
|
||||||
,
|
,
|
||||||
llm-cache,false
|
llm-cache,false
|
||||||
|
|
|
||||||
|
|
|
@ -1,3 +1,46 @@
|
||||||
USE_WEBSITE("https://pragmatismo.com.br", "30d")
|
ADD TOOL "enrollment"
|
||||||
|
ADD TOOL "course-info"
|
||||||
|
ADD TOOL "schedule"
|
||||||
|
ADD TOOL "grades"
|
||||||
|
ADD TOOL "tuition"
|
||||||
|
ADD TOOL "support"
|
||||||
|
|
||||||
TALK "Olá! Sou um assistente educacional conectado ao conteúdo da Pragmatismo. O website está sendo indexado no vector database para busca semântica. Como posso ajudar?"
|
USE KB "edu.gbkb"
|
||||||
|
|
||||||
|
CLEAR SUGGESTIONS
|
||||||
|
|
||||||
|
ADD SUGGESTION "enroll" AS "Enroll in a course"
|
||||||
|
ADD SUGGESTION "courses" AS "View available courses"
|
||||||
|
ADD SUGGESTION "schedule" AS "My class schedule"
|
||||||
|
ADD SUGGESTION "grades" AS "Check my grades"
|
||||||
|
ADD SUGGESTION "tuition" AS "Payment information"
|
||||||
|
ADD SUGGESTION "help" AS "Academic support"
|
||||||
|
|
||||||
|
SET CONTEXT "education" AS "You are an educational institution assistant helping with enrollment, courses, schedules, grades, and academic support. Be helpful and guide students through processes clearly."
|
||||||
|
|
||||||
|
BEGIN TALK
|
||||||
|
**Education Assistant**
|
||||||
|
|
||||||
|
Welcome! I can help you with:
|
||||||
|
• Course enrollment and registration
|
||||||
|
• Available courses and programs
|
||||||
|
• Class schedules and calendars
|
||||||
|
• Grades and transcripts
|
||||||
|
• Tuition and payment info
|
||||||
|
• Academic support and advising
|
||||||
|
|
||||||
|
Select an option or ask me anything.
|
||||||
|
END TALK
|
||||||
|
|
||||||
|
BEGIN SYSTEM PROMPT
|
||||||
|
You are an AI assistant for an educational institution.
|
||||||
|
|
||||||
|
Be friendly and professional.
|
||||||
|
Provide clear, accurate assistance.
|
||||||
|
Reduce administrative workload by handling common inquiries.
|
||||||
|
Help with enrollment and registration.
|
||||||
|
Provide course information and prerequisites.
|
||||||
|
Answer admissions questions.
|
||||||
|
Guide through registration process.
|
||||||
|
Explain academic policies.
|
||||||
|
END SYSTEM PROMPT
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
name,value
|
name,value
|
||||||
Answer Mode,tool
|
Answer Mode,tool
|
||||||
Start Dialog,start
|
Start Dialog,start
|
||||||
Theme Color, indigo
|
Theme Color, indigo
|
||||||
public,true
|
|
||||||
|
Loading…
Add table
Reference in a new issue