pop-python 1.0.2__tar.gz → 1.0.3__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 (33) hide show
  1. {pop_python-1.0.2 → pop_python-1.0.3}/PKG-INFO +1 -1
  2. {pop_python-1.0.2 → pop_python-1.0.3}/POP/POP.py +1 -1
  3. {pop_python-1.0.2 → pop_python-1.0.3}/pop_python.egg-info/PKG-INFO +1 -1
  4. {pop_python-1.0.2 → pop_python-1.0.3}/setup.py +1 -1
  5. {pop_python-1.0.2 → pop_python-1.0.3}/LICENSE +0 -0
  6. {pop_python-1.0.2 → pop_python-1.0.3}/MANIFEST.in +0 -0
  7. {pop_python-1.0.2 → pop_python-1.0.3}/POP/Embedder.py +0 -0
  8. {pop_python-1.0.2 → pop_python-1.0.3}/POP/LLMClient.py +0 -0
  9. {pop_python-1.0.2 → pop_python-1.0.3}/POP/__init__.py +0 -0
  10. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/2024-11-19-content_finder.md +0 -0
  11. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/2024-11-19-get_content.md +0 -0
  12. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/2024-11-19-get_title_and_url.md +0 -0
  13. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/CLI_AI_helper.md +0 -0
  14. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/content_finder.md +0 -0
  15. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/corpus_splitter.md +0 -0
  16. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/fabric-improve_prompt.md +0 -0
  17. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/function_code_generator.md +0 -0
  18. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/function_description_generator.md +0 -0
  19. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/get_content.md +0 -0
  20. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/get_title_and_url.md +0 -0
  21. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/json_formatter_prompt.md +0 -0
  22. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/openai-function_description_generator.md +0 -0
  23. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/openai-json_schema_generator.md +0 -0
  24. {pop_python-1.0.2 → pop_python-1.0.3}/POP/prompts/openai-prompt_generator.md +0 -0
  25. {pop_python-1.0.2 → pop_python-1.0.3}/POP/schemas/biomedical_ner_extractor.json +0 -0
  26. {pop_python-1.0.2 → pop_python-1.0.3}/POP/schemas/entity_extraction_per_sentence.json +0 -0
  27. {pop_python-1.0.2 → pop_python-1.0.3}/README.md +0 -0
  28. {pop_python-1.0.2 → pop_python-1.0.3}/pop_python.egg-info/SOURCES.txt +0 -0
  29. {pop_python-1.0.2 → pop_python-1.0.3}/pop_python.egg-info/dependency_links.txt +0 -0
  30. {pop_python-1.0.2 → pop_python-1.0.3}/pop_python.egg-info/requires.txt +0 -0
  31. {pop_python-1.0.2 → pop_python-1.0.3}/pop_python.egg-info/top_level.txt +0 -0
  32. {pop_python-1.0.2 → pop_python-1.0.3}/pyproject.toml +0 -0
  33. {pop_python-1.0.2 → pop_python-1.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pop-python
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Prompt Oriented Programming (POP): reusable, composable prompt functions for LLMs.
5
5
  Home-page: https://github.com/sgt1796/POP
6
6
  Author: Guotai Shen
@@ -3,7 +3,7 @@ import json
3
3
  import requests
4
4
  from dotenv import load_dotenv
5
5
  from os import getenv, path
6
- from LLMClient import LLMClient, OpenAIClient, GeminiClient, DeepseekClient, LocalPyTorchClient, DoubaoClient, OllamaClient
6
+ from .LLMClient import LLMClient, OpenAIClient, GeminiClient, DeepseekClient, LocalPyTorchClient, DoubaoClient, OllamaClient
7
7
 
8
8
  # Load environment variables
9
9
  load_dotenv()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pop-python
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Prompt Oriented Programming (POP): reusable, composable prompt functions for LLMs.
5
5
  Home-page: https://github.com/sgt1796/POP
6
6
  Author: Guotai Shen
@@ -7,7 +7,7 @@ long_description = (this_dir / "README.md").read_text(encoding="utf-8")
7
7
  setup(
8
8
  # PyPI project name
9
9
  name="pop-python",
10
- version="1.0.2", # update as needed
10
+ version="1.0.3", # update as needed
11
11
 
12
12
  author="Guotai Shen",
13
13
  author_email="sgt1796@gmail.com",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes