yetessam commited on
Commit
e5a8ad0
·
verified ·
1 Parent(s): 5e834c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -18
app.py CHANGED
@@ -12,24 +12,6 @@ from Gradio_UI import GradioUI
12
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
13
 
14
 
15
- # Tool to classify text into politeness categories
16
- @tool
17
- def ask_polite_guard(input_text: str) -> dict:
18
- """Tool that classifies text into four categories: polite, somewhat polite, neutral, and impolite.
19
-
20
- Args:
21
- input_text: The text to classify.
22
- """
23
- try:
24
- classifier = pipeline("text-classification", "Intel/polite-guard")
25
- return {
26
- "label": result['label'],
27
- "score": result['score']
28
- }
29
-
30
- except Exception as e:
31
- return f"Error fetching classification for text '{input_text}': {str(e)}"
32
-
33
  @tool
34
  def get_current_time_in_timezone(timezone: str) -> str:
35
  """A tool that fetches the current local time in a specified timezone.
 
12
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
13
 
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  @tool
16
  def get_current_time_in_timezone(timezone: str) -> str:
17
  """A tool that fetches the current local time in a specified timezone.