Sarath0x8f commited on
Commit
bd3018c
·
verified ·
1 Parent(s): 1699fe3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +90 -55
app.py CHANGED
@@ -11,48 +11,7 @@ dictionary = InferenceClient("tiiuae/falcon-7b-instruct")
11
  topic = None
12
  position = None
13
  turn = None
14
-
15
-
16
- # Function for single participant responses (Master vs You)
17
- def debate_respond(message, history: list[tuple[str, str]],
18
- max_tokens=128, temperature=0.4, top_p=0.95):
19
- if position is None or topic is None:
20
- return f"Please fill the Debate Topic -> choose Debate Master stance -> click START"
21
- # global topic, position
22
- # System message defining assistant behavior in a debate
23
- system_message = {
24
- "role": "system",
25
- "content": f"You are a debate participant tasked with defending the position '{position}' on the topic '{topic}'. Your goal is to articulate your arguments with clarity, logic, and professionalism while addressing counterpoints made by the opposing side."
26
- f"Ensure that your responses are thoughtful, evidence-based, and persuasive, strictly keep them concise—aim for responses that are 4 to 5 lines in a single paragraph."
27
- f"During the debate, if the user presents arguments challenging your stance, analyze their points critically and provide respectful but firm counterarguments. Avoid dismissive language and focus on strengthening your case through logical reasoning, data, and examples relevant to the topic."
28
- f"Stay consistent with your assigned position ('{position}'), even if the opposing arguments are strong. Your role is not to concede but to present a compelling case for your stance. Keep the tone respectful and formal throughout the discussion, fostering a constructive and engaging debate environment."
29
- }
30
-
31
- messages = [system_message]
32
-
33
- # Adding conversation history
34
- for val in history:
35
- if val[0]:
36
- messages.append({"role": "user", "content": val[0]})
37
- if val[1]:
38
- messages.append({"role": "assistant", "content": val[1]})
39
-
40
- # Adding the current user input
41
- messages.append({"role": "user", "content": message})
42
-
43
- # Generating the response
44
- response = ""
45
- for message_chunk in Master1.chat_completion(
46
- messages,
47
- max_tokens=max_tokens,
48
- stream=True,
49
- temperature=temperature,
50
- top_p=top_p,
51
- ):
52
- response += message_chunk.choices[0].delta.content
53
- yield response
54
- print(f"{datetime.datetime.now()}::{messages[-1]['content']}->{response}\n")
55
-
56
 
57
  # Function to start the single-player debate
58
  def start(txt, dd):
@@ -87,13 +46,14 @@ def explain_word(message, history: list[tuple[str, str]],max_tokens=128, tempera
87
  print(f"{datetime.datetime.now()}::{messages[-1]['content']}->{response}\n")
88
 
89
 
 
90
  def generate_response(llm, position, topic, message):
91
  system_message = {
92
  "role": "system",
93
- "content": f"You are a debate participant tasked with defending the position '{position}' on the topic '{topic}'. Your goal is to articulate your arguments with clarity, logic, and professionalism while addressing counterpoints made by the opposing side."
94
- f"Ensure that your responses are thoughtful, evidence-based, and persuasive, strictly keep them concise—aim for responses that are 4 to 5 lines in a single paragraph."
95
- f"During the debate, if the user presents arguments challenging your stance, analyze their points critically and provide respectful but firm counterarguments. Avoid dismissive language and focus on strengthening your case through logical reasoning, data, and examples relevant to the topic."
96
- f"Stay consistent with your assigned position ('{position}'), even if the opposing arguments are strong. Your role is not to concede but to present a compelling case for your stance. Keep the tone respectful and formal throughout the discussion, fostering a constructive and engaging debate environment."
97
  }
98
 
99
  messages = [system_message]
@@ -104,11 +64,12 @@ def generate_response(llm, position, topic, message):
104
  messages, max_tokens=128, stream=True, temperature=0.4, top_p=0.95):
105
  response += message_chunk.choices[0].delta.content
106
 
107
- # Return the complete response as a string
108
  return response
109
 
 
 
110
  def start_debate(topic, position_1, position_2):
111
- global turn
112
  if not topic or not position_1 or not position_2:
113
  return "Please provide the debate topic and positions for both participants.", []
114
 
@@ -117,23 +78,97 @@ def start_debate(topic, position_1, position_2):
117
  return "The positions of both participants must be opposite. Please adjust them.", []
118
 
119
  turn = "Master-1"
 
120
  initial_message = "Opening Statement"
121
  response = generate_response(Master1, position_1, topic, initial_message)
122
- return f"The debate has started! {turn} begins.", [(initial_message, response)]
 
 
123
 
124
- # Continue debate
125
- def next_turn(topic, position_1, position_2, current_turn):
126
- global turn
127
- if current_turn == "Master-1":
 
 
 
 
128
  turn = "Master-2"
129
  llm, position = Master2, position_2
130
  else:
131
  turn = "Master-1"
132
  llm, position = Master1, position_1
133
 
134
- response = generate_response(llm, position, topic, "Your turn to respond.")
135
- return f"It's now {turn}'s turn.", [("", response)]
 
 
 
 
 
 
 
 
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
  # Encode image function for logos (optional, kept for design)
139
  def encode_image(image_path):
 
11
  topic = None
12
  position = None
13
  turn = None
14
+ history = [] # Global history to track the conversation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  # Function to start the single-player debate
17
  def start(txt, dd):
 
46
  print(f"{datetime.datetime.now()}::{messages[-1]['content']}->{response}\n")
47
 
48
 
49
+ # Function for generating debate responses
50
  def generate_response(llm, position, topic, message):
51
  system_message = {
52
  "role": "system",
53
+ "content": f"You are a debate participant tasked with defending the position '{position}' on the topic '{topic}'. Your goal is to articulate your arguments with clarity, logic, and professionalism while addressing counterpoints made by the opposing side. "
54
+ f"Ensure that your responses are thoughtful, evidence-based, and persuasive. Strictly keep them concise—aim for responses that are 4 to 5 lines in a single paragraph. "
55
+ f"During the debate, if the user presents arguments challenging your stance, analyze their points critically and provide respectful but firm counterarguments. "
56
+ f"Stay consistent with your assigned position ('{position}') and maintain a respectful, formal tone throughout."
57
  }
58
 
59
  messages = [system_message]
 
64
  messages, max_tokens=128, stream=True, temperature=0.4, top_p=0.95):
65
  response += message_chunk.choices[0].delta.content
66
 
 
67
  return response
68
 
69
+
70
+ # Function to start the Master vs Master debate
71
  def start_debate(topic, position_1, position_2):
72
+ global turn, history
73
  if not topic or not position_1 or not position_2:
74
  return "Please provide the debate topic and positions for both participants.", []
75
 
 
78
  return "The positions of both participants must be opposite. Please adjust them.", []
79
 
80
  turn = "Master-1"
81
+ history = [] # Reset history
82
  initial_message = "Opening Statement"
83
  response = generate_response(Master1, position_1, topic, initial_message)
84
+ history.append((initial_message, response))
85
+ return f"The debate has started! {turn} begins.", history
86
+
87
 
88
+ # Function for alternating turns in Master vs Master debate
89
+ def next_turn(topic, position_1, position_2, current_history):
90
+ global turn, history
91
+ if not current_history:
92
+ return "No ongoing debate. Please start a debate first.", []
93
+
94
+ # Alternate turn logic
95
+ if turn == "Master-1":
96
  turn = "Master-2"
97
  llm, position = Master2, position_2
98
  else:
99
  turn = "Master-1"
100
  llm, position = Master1, position_1
101
 
102
+ last_response = current_history[-1][1] # Get the last message
103
+ response = generate_response(llm, position, topic, last_response)
104
+ history.append(("", response)) # Add the response to history
105
+ return f"It's now {turn}'s turn.", history
106
+
107
+ # Debate response function
108
+ def debate_respond(message, history: list[tuple[str, str]],
109
+ max_tokens=128, temperature=0.4, top_p=0.95):
110
+ if position == None and topic == None:
111
+ return f"Please fill the Debate Topic -> choose Debate Master stance -> click START"
112
 
113
+ # System message defining assistant behavior in a debate
114
+ system_message = {
115
+ "role": "system",
116
+ "content": f"You are a debate participant tasked with defending the position '{position}' on the topic '{topic}'. Your goal is to articulate your arguments with clarity, logic, and professionalism while addressing counterpoints made by the opposing side."
117
+ f"Ensure that your responses are thoughtful, evidence-based, and persuasive, strictly keep them concise—aim for responses that are 4 to 5 lines in a single paragraph."
118
+ f"During the debate, if the user presents arguments challenging your stance, analyze their points critically and provide respectful but firm counterarguments. Avoid dismissive language and focus on strengthening your case through logical reasoning, data, and examples relevant to the topic."
119
+ f"Stay consistent with your assigned position ('{position}'), even if the opposing arguments are strong. Your role is not to concede but to present a compelling case for your stance. Keep the tone respectful and formal throughout the discussion, fostering a constructive and engaging debate environment."
120
+ }
121
+
122
+ messages = [system_message]
123
+
124
+ # Adding conversation history
125
+ for val in history:
126
+ if val[0]:
127
+ messages.append({"role": "user", "content": val[0]})
128
+ if val[1]:
129
+ messages.append({"role": "assistant", "content": val[1]})
130
+
131
+ # Adding the current user input
132
+ messages.append({"role": "user", "content": message})
133
+
134
+ # Generating the response
135
+ response = ""
136
+ for message in client.chat_completion(
137
+ messages,
138
+ max_tokens=max_tokens,
139
+ stream=True,
140
+ temperature=temperature,
141
+ top_p=top_p,
142
+ ):
143
+ response += message.choices[0].delta.content
144
+ yield response
145
+ print(f"{datetime.datetime.now()}::{messages[-1]['content']}->{response}\n")
146
+
147
+ # Enhanced dictionary explanation function
148
+ def explain_word(message, history: list[tuple[str, str]], max_tokens=128, temperature=0.4, top_p=0.95):
149
+ system_message = {
150
+ "role": "system",
151
+ "content": "You are a professional English teacher with expertise in vocabulary, grammar, and etymology. "
152
+ "When asked about a word or phrase, provide a clear and concise definition, its part of speech, examples of its use in sentences, synonyms, and any relevant etymological details. "
153
+ "If the word has multiple meanings, explain them with clarity. Your goal is to enhance understanding and provide a comprehensive explanation in a conversational tone."
154
+ }
155
+ messages = [system_message]
156
+
157
+ # Adding conversation history
158
+ for val in history:
159
+ if val[0]:
160
+ messages.append({"role": "user", "content": val[0]})
161
+ if val[1]:
162
+ messages.append({"role": "assistant", "content": val[1]})
163
+
164
+ # Adding the current user input
165
+ messages.append({"role": "user", "content": message})
166
+
167
+ response = ""
168
+ for message_chunk in dictionary.chat_completion(
169
+ messages, max_tokens=max_tokens, stream=True, temperature=temperature, top_p=top_p):
170
+ response += message_chunk.choices[0].delta.content
171
+ return response
172
 
173
  # Encode image function for logos (optional, kept for design)
174
  def encode_image(image_path):