Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -50,7 +50,7 @@ app = FastAPI()
|
|
50 |
guardrail = Guardrail()
|
51 |
|
52 |
|
53 |
-
@app.post("/classify
|
54 |
def classify_text(text_prompt: TextPrompt):
|
55 |
try:
|
56 |
result = guardrail.guard(text_prompt.prompt)
|
|
|
50 |
guardrail = Guardrail()
|
51 |
|
52 |
|
53 |
+
@app.post("/api/models/PromptInjection/classify", response_model=ClassificationResult)
|
54 |
def classify_text(text_prompt: TextPrompt):
|
55 |
try:
|
56 |
result = guardrail.guard(text_prompt.prompt)
|