ldhldh commited on
Commit
61e57ac
ยท
1 Parent(s): 3e48437

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -37,6 +37,7 @@ model_name = "daekeun-ml/Llama-2-ko-instruct-13B"
37
  #quantumaikr/llama-2-70b-fb16-korean
38
  tokenizer = AutoTokenizer.from_pretrained(model_name)
39
 
 
40
  def init():
41
  if check:
42
  model = AutoDistributedModelForCausalLM.from_pretrained(model_name)
@@ -53,7 +54,9 @@ def check(model_name):
53
 
54
 
55
  def chat(id, npc, prompt):
56
-
 
 
57
  # get_coin endpoint
58
  response = requests.post("https://ldhldh-api-for-unity.hf.space/run/predict_6", json={
59
  "data": [
 
37
  #quantumaikr/llama-2-70b-fb16-korean
38
  tokenizer = AutoTokenizer.from_pretrained(model_name)
39
 
40
+ model = None
41
  def init():
42
  if check:
43
  model = AutoDistributedModelForCausalLM.from_pretrained(model_name)
 
54
 
55
 
56
  def chat(id, npc, prompt):
57
+ if model == None:
58
+ init()
59
+ return "no model"
60
  # get_coin endpoint
61
  response = requests.post("https://ldhldh-api-for-unity.hf.space/run/predict_6", json={
62
  "data": [