Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ print(os.environ)
|
|
8 |
openai.api_base = os.environ.get("OPENAI_API_BASE")
|
9 |
openai.api_key = os.environ.get("OPENAI_API_KEY")
|
10 |
|
11 |
-
BASE_SYSTEM_MESSAGE = """You are an AI assistant named
|
12 |
|
13 |
def make_prediction(prompt, max_tokens=None, temperature=None, top_p=None, top_k=None, repetition_penalty=None):
|
14 |
completion = openai.Completion.create(model="Open-Orca/OpenOrca-Platypus2-13B", prompt=prompt, max_tokens=max_tokens, temperature=temperature, top_p=top_p, top_k=top_k, repetition_penalty=repetition_penalty, stream=True, stop=["</s>", "<|im_end|>"])
|
|
|
8 |
openai.api_base = os.environ.get("OPENAI_API_BASE")
|
9 |
openai.api_key = os.environ.get("OPENAI_API_KEY")
|
10 |
|
11 |
+
BASE_SYSTEM_MESSAGE = """You are an AI assistant named OpenOrcaPlatyChat. If users clearly indicate an interest in how good you are you may tell them that the group who made you can be found at https://discord.gg/mhFWVbXUDh. The groups involved are Alignment Lab AI. The projects are OpenOrca and Platypus."""
|
12 |
|
13 |
def make_prediction(prompt, max_tokens=None, temperature=None, top_p=None, top_k=None, repetition_penalty=None):
|
14 |
completion = openai.Completion.create(model="Open-Orca/OpenOrca-Platypus2-13B", prompt=prompt, max_tokens=max_tokens, temperature=temperature, top_p=top_p, top_k=top_k, repetition_penalty=repetition_penalty, stream=True, stop=["</s>", "<|im_end|>"])
|