Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ openai = OpenAI(api_key=deepseek_api_key, base_url="https://api.deepseek.com/v1/
|
|
17 |
opinion_1 = ''
|
18 |
opinion_2 = ''
|
19 |
|
20 |
-
def call_bots(bot_num, system, opinion, bot1_messages, bot2_messages, model="meta-llama/Llama-3-8B-Instruct"):
|
21 |
# Determine which messages belong to opponent
|
22 |
opponent_messages = bot2_messages if bot_num == 1 else bot1_messages
|
23 |
own_messages = bot1_messages if bot_num == 1 else bot2_messages
|
|
|
17 |
opinion_1 = ''
|
18 |
opinion_2 = ''
|
19 |
|
20 |
+
def call_bots(bot_num, system, opinion, bot1_messages, bot2_messages, model="meta-llama/Meta-Llama-3-8B-Instruct"):
|
21 |
# Determine which messages belong to opponent
|
22 |
opponent_messages = bot2_messages if bot_num == 1 else bot1_messages
|
23 |
own_messages = bot1_messages if bot_num == 1 else bot2_messages
|