Spaces:
Running
Running
bainskarman
commited on
Update model.py
Browse files
model.py
CHANGED
@@ -25,7 +25,7 @@ def modelFeedback(ats_score, resume_data):
|
|
25 |
print(f"Input length: {input_length}")
|
26 |
|
27 |
# Generate response
|
28 |
-
response = generator(input_prompt,
|
29 |
|
30 |
# Check if response is not empty
|
31 |
if response and len(response) > 0:
|
|
|
25 |
print(f"Input length: {input_length}")
|
26 |
|
27 |
# Generate response
|
28 |
+
response = generator(input_prompt, num_return_sequences=1)
|
29 |
|
30 |
# Check if response is not empty
|
31 |
if response and len(response) > 0:
|