vldcheck commited on
Commit
1b1bfb5
·
verified ·
1 Parent(s): 6efefa4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -9,7 +9,12 @@ from Gradio_UI import GradioUI
9
 
10
  @tool
11
  def random_fact(_: str) -> str:
12
- """Returns a random hardcoded fact."""
 
 
 
 
 
13
  return "Octopuses have three hearts."
14
 
15
  @tool
 
9
 
10
  @tool
11
  def random_fact(_: str) -> str:
12
+ """
13
+ Returns a random hardcoded fact.
14
+
15
+ Args:
16
+ _: Dummy argument, not used.
17
+ """
18
  return "Octopuses have three hearts."
19
 
20
  @tool