Salvatore Rossitto commited on
Commit
f1d36b6
·
1 Parent(s): 8f53975

fixed examples

Browse files
Files changed (1) hide show
  1. RBotReloaded.py +5 -5
RBotReloaded.py CHANGED
@@ -230,22 +230,22 @@ class RBotAgent:
230
  prompt = f"""
231
  EXAMPLE 1:
232
  USER: Find me a recipe for chocolate chip cookies.
233
- AI: SearchAndReply("chocolate chip cookies recipe", 5) #params query, max_results=5
234
 
235
  EXAMPLE 2:
236
  USER: Show me pictures of cute puppies.
237
- AI: ImageGenerator("cute puppies", 512, 512) #params: prompt, width=512, height=512, denoise_strength=0.75, guidance_scale=7.5, negative_prompt = "")
238
  EXAMPLE 3:
239
  USER: Explain the concept of blockchain.
240
- AI: KnowledgeBaseQuery("Explain blockchain") #params query
241
 
242
  EXAMPLE 4:
243
  USER: Find me recent news about cryptocurrency.
244
- AI: SearchAndReply("recent cryptocurrency news") #params query, max_results=5
245
 
246
  EXAMPLE 5:
247
  USER: Can you calculate the factorial of 5?
248
- AI: Calculator("factorial(5)") #params query
249
 
250
  ###REAL CONVERSATION:\n
251
  SYS:Today is {str(datetime.now().date())},
 
230
  prompt = f"""
231
  EXAMPLE 1:
232
  USER: Find me a recipe for chocolate chip cookies.
233
+ AI: SearchAndReply("chocolate chip cookies recipe", 5)
234
 
235
  EXAMPLE 2:
236
  USER: Show me pictures of cute puppies.
237
+ AI: ImageGenerator("cute puppies", 512, 512)
238
  EXAMPLE 3:
239
  USER: Explain the concept of blockchain.
240
+ AI: KnowledgeBaseQuery("Explain blockchain")
241
 
242
  EXAMPLE 4:
243
  USER: Find me recent news about cryptocurrency.
244
+ AI: SearchAndReply("recent cryptocurrency news")
245
 
246
  EXAMPLE 5:
247
  USER: Can you calculate the factorial of 5?
248
+ AI: Calculator("factorial(5)")
249
 
250
  ###REAL CONVERSATION:\n
251
  SYS:Today is {str(datetime.now().date())},