Delete config.py
Browse files
config.py
DELETED
|
@@ -1,58 +0,0 @@
|
|
| 1 |
-
import os
|
| 2 |
-
from datetime import timedelta
|
| 3 |
-
from dotenv import load_dotenv
|
| 4 |
-
|
| 5 |
-
# load_dotenv()
|
| 6 |
-
|
| 7 |
-
# API Keys
|
| 8 |
-
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
|
| 9 |
-
|
| 10 |
-
# Database
|
| 11 |
-
DB_PATH = "getscene_ai.sqlite"
|
| 12 |
-
|
| 13 |
-
# Models
|
| 14 |
-
EMBED_MODEL = "text-embedding-3-small"
|
| 15 |
-
|
| 16 |
-
# Caching
|
| 17 |
-
CACHE_DURATION = timedelta(hours=24)
|
| 18 |
-
|
| 19 |
-
# Keyword Lists
|
| 20 |
-
EMOTIONAL_KEYWORDS = [
|
| 21 |
-
'stuck', 'frustrated', 'discouraged', 'overwhelmed', 'scared',
|
| 22 |
-
'nervous', 'anxious', 'worried', 'fear', 'doubt', 'confidence',
|
| 23 |
-
'insecure', 'lost', 'confused', 'struggling', 'hard time',
|
| 24 |
-
'giving up', 'burnout', 'rejection', 'failed', 'can\'t',
|
| 25 |
-
'feeling', 'feel', 'emotional', 'depressed', 'sad', 'unmotivated',
|
| 26 |
-
'hopeless', 'stressed', 'pressure', 'imposter'
|
| 27 |
-
]
|
| 28 |
-
|
| 29 |
-
ACTION_KEYWORDS = [
|
| 30 |
-
'get an agent', 'find agent', 'need agent', 'want agent', 'sign with agent',
|
| 31 |
-
'more auditions', 'book', 'booking', 'callbacks', 'improve',
|
| 32 |
-
'better', 'self-tape', 'materials', 'headshots', 'reel',
|
| 33 |
-
'network', 'connections', 'industry', 'career', 'strategy',
|
| 34 |
-
'agent prep', 'total agent prep', 'workshop', 'class', 'training',
|
| 35 |
-
'results', 'success', 'grow', 'advance', 'level up'
|
| 36 |
-
]
|
| 37 |
-
|
| 38 |
-
POLICY_KEYWORDS = [
|
| 39 |
-
'refund', 'refunds', 'money back',
|
| 40 |
-
'attend', 'attendance', 'miss', 'missed', 'missing', 'absent',
|
| 41 |
-
'late', 'lateness', 'tardy',
|
| 42 |
-
'reschedule', 'change date', 'move class',
|
| 43 |
-
'credit', 'credits',
|
| 44 |
-
'cancel', 'cancellation', 'canceling',
|
| 45 |
-
'policy', 'policies'
|
| 46 |
-
]
|
| 47 |
-
|
| 48 |
-
DETAIL_SYNONYMS = [
|
| 49 |
-
'detail', 'details', 'explain', 'elaborate', 'tell me more',
|
| 50 |
-
'more info', 'describe', 'thorough', 'comprehensive'
|
| 51 |
-
]
|
| 52 |
-
|
| 53 |
-
PERSONA_INSTRUCTION = """
|
| 54 |
-
You are a warm, encouraging mentor at Get Scene Studios. Your goal is to help actors navigate their careers with confidence.
|
| 55 |
-
- Sound natural and human, not scripted or robotic. Use conversational transitions like "I'd suggest starting with..." or "A great way to approach this is..."
|
| 56 |
-
- Be encouraging but practical. Acknowledge that the acting journey is a marathon, not a sprint.
|
| 57 |
-
- Help the user THINK: Instead of just giving an answer, add a brief "mentorship flourish" that explains the value of a recommendation (e.g., "This workshop is great because it gets you comfortable with the pressure of a real callback.")
|
| 58 |
-
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|