dogutcu commited on
Commit
8f4842e
·
verified ·
1 Parent(s): e81b04f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -13
app.py CHANGED
@@ -60,11 +60,11 @@ def find_relevant_segment(user_query, segments):
60
 
61
  def generate_response(user_query, relevant_segment):
62
  """
63
- Generate a response emphasizing the bot's capability in providing chess information.
64
  """
65
  try:
66
- system_message = "You are a chess chatbot specialized in providing information on chess rules, strategies, and terminology."
67
- user_message = f"Here's the information on chess: {relevant_segment}"
68
  messages = [
69
  {"role": "system", "content": system_message},
70
  {"role": "user", "content": user_message}
@@ -88,7 +88,7 @@ def query_model(question):
88
  Process a question, find relevant information, and generate a response.
89
  """
90
  if question == "":
91
- return "Welcome to ChessBot! Ask me anything about chess rules, strategies, and terminology."
92
  relevant_segment = find_relevant_segment(question, segments)
93
  if not relevant_segment:
94
  return "Could not find specific information. Please refine your question."
@@ -97,20 +97,24 @@ def query_model(question):
97
 
98
  # Define the welcome message and specific topics the chatbot can provide information about
99
  welcome_message = """
100
- # ♟️ Welcome to ChessBot!
101
 
102
- ## Your AI-driven assistant for all chess-related queries.
103
  """
104
 
105
  topics = """
106
- ### Feel Free to ask me anything from the topics below!
107
- - Chess piece movements
108
- - Special moves
109
- - Game phases
 
 
 
110
  - Common strategies
111
- - Chess terminology
112
- - Famous games
113
- - Chess tactics
 
114
  """
115
 
116
  # Setup the Gradio Blocks interface with custom layout components
 
60
 
61
  def generate_response(user_query, relevant_segment):
62
  """
63
+ Generate a response emphasizing the bot's capability in providing information related to composting food.
64
  """
65
  try:
66
+ system_message = "You are a chess chatbot specialized in providing information about food composting tips, tricks, and basics."
67
+ user_message = f"Here's the information on composting: {relevant_segment}"
68
  messages = [
69
  {"role": "system", "content": system_message},
70
  {"role": "user", "content": user_message}
 
88
  Process a question, find relevant information, and generate a response.
89
  """
90
  if question == "":
91
+ return "Welcome to CompBot! Ask me anything about composting tips, tricks, and basics!"
92
  relevant_segment = find_relevant_segment(question, segments)
93
  if not relevant_segment:
94
  return "Could not find specific information. Please refine your question."
 
97
 
98
  # Define the welcome message and specific topics the chatbot can provide information about
99
  welcome_message = """
100
+ # ♟️ Welcome to CompBot!
101
 
102
+ ## Your AI-driven assistant for all composting-related queries.
103
  """
104
 
105
  topics = """
106
+ ### Feel free to ask me anything from the topics below!
107
+ - Components of composting
108
+ - Green and brown materials
109
+ - The composting process
110
+ - Size and structure
111
+ - Aeration, moisture, and temperature
112
+ - Timeline for composting
113
  - Common strategies
114
+ - Uses of compost
115
+ - Tips for successful composting
116
+ - Sustainability benefits of composting
117
+ - Carbon footprint reduction
118
  """
119
 
120
  # Setup the Gradio Blocks interface with custom layout components