mindus-tk
commited on
Commit
•
c7b35c3
1
Parent(s):
5aa4a80
set endpoint
Browse files
app.py
CHANGED
@@ -9,8 +9,8 @@ model_name = "rinna/youri-7b-chat"
|
|
9 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
10 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
11 |
|
12 |
-
@app.route("/", methods=['POST'])
|
13 |
-
def
|
14 |
input_data = request.json
|
15 |
input_text = input_data['input']
|
16 |
|
|
|
9 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
10 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
11 |
|
12 |
+
@app.route("/endpoint", methods=['POST'])
|
13 |
+
def endpoint():
|
14 |
input_data = request.json
|
15 |
input_text = input_data['input']
|
16 |
|