tensorgirl commited on
Commit
6ea9abd
·
verified ·
1 Parent(s): a17fc73

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +8 -3
main.py CHANGED
@@ -2,7 +2,12 @@ from fastapi import FastAPI
2
  import os
3
  import json
4
  import google.generativeai as genai
 
5
 
 
 
 
 
6
  app = FastAPI()
7
 
8
  GOOGLE_API_KEY = os.environ.get("GOOGLE_API_KEY")
@@ -28,7 +33,7 @@ task_description = " You need to classify each message you receive among the fol
28
  def classify_msg(message):
29
  prompt_parts = [
30
  task_description,
31
- f"Message: {message}",
32
  "Category: ",
33
  ]
34
 
@@ -46,5 +51,5 @@ async def root():
46
  return {"Text Emotion Classification":"Version 1.5 'Text'"}
47
 
48
  @app.post("/classify/")
49
- def read_user(text: str):
50
- return classify_msg(text)
 
2
  import os
3
  import json
4
  import google.generativeai as genai
5
+ from pydantic import BaseModel, validator
6
 
7
+
8
+ class Item(BaseModel):
9
+ text: str = "sddddddddddd"
10
+
11
  app = FastAPI()
12
 
13
  GOOGLE_API_KEY = os.environ.get("GOOGLE_API_KEY")
 
33
  def classify_msg(message):
34
  prompt_parts = [
35
  task_description,
36
+ f"Message: {message['text']}",
37
  "Category: ",
38
  ]
39
 
 
51
  return {"Text Emotion Classification":"Version 1.5 'Text'"}
52
 
53
  @app.post("/classify/")
54
+ def read_user(js: Item):
55
+ return classify_msg(js)