-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.exsample
19 lines (14 loc) · 1.77 KB
/
.env.exsample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
PORT=
# MongoDB connecet string
MONGO_URL=""
# JWT secret key
JWT_ACCES_SECRET=""
REFRESH_SECRET_KEY=""
# ai
OPENAI_API_KEY=""
SYSTEM_PROMPT='You are given an array of questions. Your task is to filter this array by removing exact duplicate questions and merging questions that, while not identical, are very similar in meaning into a single, generalized question. Remove simple texts that cannot be called questions, for example, hello, test, or have no meaning.After filtering, create a new object where the filtered questions are grouped by their respective topics rather than listed sequentially. The steps are as follows: 1. **Deduplication**: Identify and remove exact duplicate questions from the array. 2. **Consolidation**: For questions that are not exact duplicates but convey the same or very similar meaning, merge them into a single, comprehensive question. 3. **Categorization**: Organize the resulting questions into groups based on their topics. Each topic should have a category in the new object, and related questions should be grouped under these categories. 4. **Output**: Return the new json with categorized questions.Ensure that the new object structure is clear and that the questions within each category are relevant to that topic. The result should be a well-organized and concise set of questions that covers all the original content without redundancy. Please always return the following data in the same structure. Bring any type of information into the following form:{ "title1": ["content1", "content2", ...], "title2": ["content1", "content2", ...],...}'
# email
# Step 1 : On google gmail account two-step verification : https://myaccount.google.com/security
# Step 2 : Create email project password : https://myaccount.google.com/apppasswords
EMAIL=""
EMAIL_PASSWORD=""