Spaces:
Runtime error
Runtime error
Salvatore Rossitto
commited on
Commit
·
f1d36b6
1
Parent(s):
8f53975
fixed examples
Browse files- 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)
|
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())},
|
|
|
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())},
|