Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,9 +14,9 @@ llm = HuggingFaceEndpoint(
|
|
14 |
)
|
15 |
# Define the function to process user input
|
16 |
def classify_text(text):
|
17 |
-
prompt = "Classify the following text into a category or topic
|
18 |
-
|
19 |
-
results = llm.invoke(
|
20 |
return results
|
21 |
|
22 |
# Create Gradio interface
|
|
|
14 |
)
|
15 |
# Define the function to process user input
|
16 |
def classify_text(text):
|
17 |
+
prompt = f"""Classify the following text into a category or topic. You dont need to write specific informations or explanations, only return the categories.
|
18 |
+
{text}\nCategories:"""
|
19 |
+
results = llm.invoke(prompt)
|
20 |
return results
|
21 |
|
22 |
# Create Gradio interface
|