curiouscurrent commited on
Commit
6602b5e
·
verified ·
1 Parent(s): 528069f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def generate_response(prompt, max_length=1000, temperature=1.0):
32
 
33
  # Create Gradio interface
34
  def chat_with_omnicode(prompt):
35
- response = generate_response(prompt)
36
  return response
37
 
38
 
 
32
 
33
  # Create Gradio interface
34
  def chat_with_omnicode(prompt):
35
+ response = generate_response(prompt, max_length=1000) # Adjust max_length as needed
36
  return response
37
 
38