Update src/library_summarizer.py
Browse files
src/library_summarizer.py
CHANGED
|
@@ -15,7 +15,7 @@ def llm_lib_summarizer_v1(import_string: str, api_key: str, model = 'openai/gpt-
|
|
| 15 |
"content": f'''Assume we are in the Google colab environment and I have imported the following libraries and classes: {import_string}.
|
| 16 |
Tell me on a high level summarize the main library packages that were imported
|
| 17 |
and the other major packages that are dependant on these libraries even if they are not imported. Give the output as a json. For example:
|
| 18 |
-
sklearn.model_selection, sklearn.metrics should return only sklearn.
|
| 19 |
|
| 20 |
output should always look like this:
|
| 21 |
```json
|
|
|
|
| 15 |
"content": f'''Assume we are in the Google colab environment and I have imported the following libraries and classes: {import_string}.
|
| 16 |
Tell me on a high level summarize the main library packages that were imported
|
| 17 |
and the other major packages that are dependant on these libraries even if they are not imported. Give the output as a json. For example:
|
| 18 |
+
sklearn.model_selection, sklearn.metrics and sklearn.* should return only sklearn.
|
| 19 |
|
| 20 |
output should always look like this:
|
| 21 |
```json
|