scriptmonkey 1.2.0__tar.gz → 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/PKG-INFO +1 -1
  2. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/core.py +1 -1
  3. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/PKG-INFO +1 -1
  4. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/setup.py +1 -1
  5. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/README.md +0 -0
  6. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/__init__.py +0 -0
  7. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/__main__.py +0 -0
  8. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/file_handler.py +0 -0
  9. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/__init__.py +0 -0
  10. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/basemodels.py +0 -0
  11. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/client.py +0 -0
  12. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/prompting.py +0 -0
  13. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/prompts/fix_error.txt +0 -0
  14. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey/openai_client/prompts/project_description.txt +0 -0
  15. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/SOURCES.txt +0 -0
  16. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/dependency_links.txt +0 -0
  17. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/entry_points.txt +0 -0
  18. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/requires.txt +0 -0
  19. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/scriptmonkey.egg-info/top_level.txt +0 -0
  20. {scriptmonkey-1.2.0 → scriptmonkey-1.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptmonkey
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: A Python package that generates complex Python projects and fixes errors in your code using OpenAI's GPT API.
5
5
  Home-page: https://github.com/lukerbs/ScriptMonkey
6
6
  Author: Luke Kerbs
@@ -429,7 +429,7 @@ def render_response_with_syntax_highlighting(response):
429
429
  console.print(Markdown(pre_text))
430
430
 
431
431
  # Print the code block with syntax highlighting
432
- syntax = Syntax(code_content, language, theme="monokai", line_numbers=True)
432
+ syntax = Syntax(f"\n{code_content}", language, theme="monokai", line_numbers=True)
433
433
  console.print("\n")
434
434
  console.print(syntax)
435
435
  console.print("\n")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptmonkey
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: A Python package that generates complex Python projects and fixes errors in your code using OpenAI's GPT API.
5
5
  Home-page: https://github.com/lukerbs/ScriptMonkey
6
6
  Author: Luke Kerbs
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="scriptmonkey",
5
- version="1.2.0",
5
+ version="1.2.1",
6
6
  description="A Python package that generates complex Python projects and fixes errors in your code using OpenAI's GPT API.",
7
7
  long_description=open("README.md", "r").read(),
8
8
  long_description_content_type="text/markdown",
File without changes
File without changes