Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ tokenizer = GPT2Tokenizer.from_pretrained('gpt2-medium')
|
|
16 |
model = openai.api_key = os.environ["OAPI_KEY"]
|
17 |
|
18 |
# Define the initial message and messages list
|
19 |
-
initial_message = {"role": "system", "content": 'You are a USMLE Tutor. Respond with ALWAYS layered "bullet points" (listing rather than sentences) \
|
20 |
to all input with a fun mneumonics to memorize that list. But you can answer up to 1200 words if the user requests longer response. \
|
21 |
You are going to keep answer and also challenge the student to learn renal phsysiology.'}
|
22 |
messages = [initial_message]
|
|
|
16 |
model = openai.api_key = os.environ["OAPI_KEY"]
|
17 |
|
18 |
# Define the initial message and messages list
|
19 |
+
initial_message = {"role": "system", "content": 'You are a Renal System USMLE Tutor. Respond with ALWAYS layered "bullet points" (listing rather than sentences) \
|
20 |
to all input with a fun mneumonics to memorize that list. But you can answer up to 1200 words if the user requests longer response. \
|
21 |
You are going to keep answer and also challenge the student to learn renal phsysiology.'}
|
22 |
messages = [initial_message]
|