Spaces:
Runtime error
Runtime error
Commit
·
0a9fba8
1
Parent(s):
609a4fb
Update main.py
Browse files
main.py
CHANGED
@@ -4,6 +4,9 @@ from huggingface_hub import InferenceClient
|
|
4 |
app = FastAPI()
|
5 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
6 |
|
|
|
|
|
|
|
7 |
def format_prompt(message, history):
|
8 |
prompt = "<s>"
|
9 |
for user_prompt, bot_response in history:
|
@@ -12,11 +15,12 @@ def format_prompt(message, history):
|
|
12 |
prompt += f"[INST] {message} [/INST]"
|
13 |
return prompt
|
14 |
|
15 |
-
@app.
|
16 |
-
def read_root(
|
|
|
17 |
history = [] # Puoi definire la history se necessario
|
18 |
-
generated_response = generate(
|
19 |
-
return {"response": generated_response}
|
20 |
|
21 |
@app.get("/")
|
22 |
def read_general():
|
|
|
4 |
app = FastAPI()
|
5 |
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
6 |
|
7 |
+
class InputData(BaseModel):
|
8 |
+
input: str
|
9 |
+
|
10 |
def format_prompt(message, history):
|
11 |
prompt = "<s>"
|
12 |
for user_prompt, bot_response in history:
|
|
|
15 |
prompt += f"[INST] {message} [/INST]"
|
16 |
return prompt
|
17 |
|
18 |
+
@app.post("/Genera")
|
19 |
+
def read_root(request: Request, input_data: InputData):
|
20 |
+
input_text = input_data.input
|
21 |
history = [] # Puoi definire la history se necessario
|
22 |
+
generated_response = generate(input_text, history)
|
23 |
+
return {"response": generated_response}
|
24 |
|
25 |
@app.get("/")
|
26 |
def read_general():
|