JSenkCC commited on
Commit
01a4cb3
·
verified ·
1 Parent(s): 35ccc0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -242,10 +242,11 @@ def generate_prompt(file_contents, functionality_description):
242
  prompt += f"File: {os.path.basename(file_path)}\n{content}\n\n"
243
 
244
  prompt += "If the functionality does not exist in the project, return 'Functionality does not exist.', otherwise, for each relevant function, provide:\n"
245
- prompt += "1. The function name.\n"
246
- prompt += "2. Dependencies on other functions or modules.\n"
 
247
 
248
- prompt += "Also return a more clear version of the user entered functionality at the top of your response. Provide no commentary, just what has been asked please."
249
 
250
  return prompt
251
 
 
242
  prompt += f"File: {os.path.basename(file_path)}\n{content}\n\n"
243
 
244
  prompt += "If the functionality does not exist in the project, return 'Functionality does not exist.', otherwise, for each relevant function, provide:\n"
245
+ prompt += "1. Which file the function is found in.\n"
246
+ prompt += "2. The function name.\n"
247
+ prompt += "3. Dependencies on other functions or modules.\n"
248
 
249
+ prompt += "Also, return a more clear version of the user entered functionality at the top of your response. Provide no commentary, just what has been asked please."
250
 
251
  return prompt
252