Update app.py
Browse files
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.
|
246 |
-
prompt += "2.
|
|
|
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 |
|