seawolf2357 commited on
Commit
c352c56
Β·
verified Β·
1 Parent(s): 2a4893c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -9,7 +9,6 @@ def call_api(prompt, history_json, system_prompt, temperature, max_new_tokens, t
9
  history = json.loads(history_json)
10
  except json.JSONDecodeError:
11
  return "History input must be valid JSON. E.g., [[\"User\", \"Bot response\"], [\"User2\", \"Response2\"]]"
12
-
13
  data = {
14
  "prompt": prompt,
15
  "history": history,
@@ -19,7 +18,6 @@ def call_api(prompt, history_json, system_prompt, temperature, max_new_tokens, t
19
  "top_p": top_p,
20
  "repetition_penalty": repetition_penalty
21
  }
22
-
23
  try:
24
  response = requests.post(url, json=data)
25
  response.raise_for_status() # Raises HTTPError for bad requests
@@ -31,7 +29,7 @@ def main_interface():
31
  with gr.Blocks() as demo:
32
  with gr.Row():
33
  prompt = gr.Textbox(label="Prompt", placeholder="Enter your prompt here...")
34
- history = gr.TextArea(label="History", placeholder="Enter history as JSON array...", rows=3) # Corrected to 'TextArea'
35
  system_prompt = gr.Textbox(label="System Prompt", placeholder="λ°˜λ“œμ‹œ ν•œκΈ€λ‘œ λ‹΅λ³€ν•˜λΌ")
36
  temperature = gr.Number(label="Temperature", value=0.3)
37
  max_new_tokens = gr.Number(label="Max New Tokens", value=1048)
 
9
  history = json.loads(history_json)
10
  except json.JSONDecodeError:
11
  return "History input must be valid JSON. E.g., [[\"User\", \"Bot response\"], [\"User2\", \"Response2\"]]"
 
12
  data = {
13
  "prompt": prompt,
14
  "history": history,
 
18
  "top_p": top_p,
19
  "repetition_penalty": repetition_penalty
20
  }
 
21
  try:
22
  response = requests.post(url, json=data)
23
  response.raise_for_status() # Raises HTTPError for bad requests
 
29
  with gr.Blocks() as demo:
30
  with gr.Row():
31
  prompt = gr.Textbox(label="Prompt", placeholder="Enter your prompt here...")
32
+ history = gr.TextArea(label="History", placeholder="Enter history as JSON array...", height="100px") # Use 'height' instead of 'rows'
33
  system_prompt = gr.Textbox(label="System Prompt", placeholder="λ°˜λ“œμ‹œ ν•œκΈ€λ‘œ λ‹΅λ³€ν•˜λΌ")
34
  temperature = gr.Number(label="Temperature", value=0.3)
35
  max_new_tokens = gr.Number(label="Max New Tokens", value=1048)