GabrielSalem commited on
Commit
4705296
·
verified ·
1 Parent(s): f4e6ad7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,8 +46,8 @@ def get_bot_response(file, prompt):
46
  # Prepare input for the model
47
  input_text = f"{prompt}\n\nFile Content:\n{file_content}"
48
 
49
- # Call Hugging Face API for text completion
50
- response = client.text_generation(input=input_text, max_new_tokens=50000)
51
 
52
  return response
53
  except Exception as e:
 
46
  # Prepare input for the model
47
  input_text = f"{prompt}\n\nFile Content:\n{file_content}"
48
 
49
+ # Call Hugging Face API for text generation
50
+ response = client.text_generation(prompt=input_text, max_new_tokens=500)
51
 
52
  return response
53
  except Exception as e: