mb-rag 1.1.62__tar.gz → 1.1.64__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.

Potentially problematic release.


This version of mb-rag might be problematic. Click here for more details.

Files changed (26) hide show
  1. {mb_rag-1.1.62 → mb_rag-1.1.64}/PKG-INFO +1 -1
  2. mb_rag-1.1.64/mb_rag/prompts_bank.py +77 -0
  3. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/version.py +1 -1
  4. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag.egg-info/PKG-INFO +1 -1
  5. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag.egg-info/SOURCES.txt +1 -1
  6. mb_rag-1.1.62/mb_rag/chatbot/prompts.py +0 -59
  7. {mb_rag-1.1.62 → mb_rag-1.1.64}/README.md +0 -0
  8. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/__init__.py +0 -0
  9. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/basic.py +0 -0
  10. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/chatbot/__init__.py +0 -0
  11. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/chatbot/chains.py +0 -0
  12. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/chatbot/conversation.py +0 -0
  13. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/rag/__init__.py +0 -0
  14. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/rag/embeddings.py +0 -0
  15. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/__init__.py +0 -0
  16. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/all_data_extract.py +0 -0
  17. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/bounding_box.py +0 -0
  18. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/document_extract.py +0 -0
  19. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/extra.py +0 -0
  20. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag/utils/pdf_extract.py +0 -0
  21. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag.egg-info/dependency_links.txt +0 -0
  22. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag.egg-info/requires.txt +0 -0
  23. {mb_rag-1.1.62 → mb_rag-1.1.64}/mb_rag.egg-info/top_level.txt +0 -0
  24. {mb_rag-1.1.62 → mb_rag-1.1.64}/pyproject.toml +0 -0
  25. {mb_rag-1.1.62 → mb_rag-1.1.64}/setup.cfg +0 -0
  26. {mb_rag-1.1.62 → mb_rag-1.1.64}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mb_rag
3
- Version: 1.1.62
3
+ Version: 1.1.64
4
4
  Summary: RAG function file
5
5
  Author: ['Malav Bateriwala']
6
6
  Requires-Python: >=3.8
@@ -0,0 +1,77 @@
1
+ from langchain_core.prompts.chat import ChatPromptTemplate
2
+
3
+ __all__ = ["PromptManager"]
4
+
5
+ class PromptManager:
6
+ """
7
+ Central class for storing and invoking prompt templates.
8
+
9
+ Example:
10
+ pm = PromptManager()
11
+ prompt_text = pm.render_prompt("greeting")
12
+ print(prompt_text)
13
+
14
+ pm = PromptManager()
15
+ prompt_text = pm.render_prompt("todo_task", {"task": "Plan a deep learning project for image recognition"})
16
+ print(prompt_text)
17
+ """
18
+
19
+ def __init__(self):
20
+ self.templates = {
21
+ "coding_python": """You are a Python developer.
22
+ Human: {question}
23
+ Assistant:""",
24
+
25
+ "greeting": """You are a friendly assistant.
26
+ Human: Hello!
27
+ Assistant: Hi there! How can I assist you today?""",
28
+
29
+ "goodbye": """You are a friendly assistant.
30
+ Human: Goodbye!
31
+ Assistant: Goodbye! Have a great day!""",
32
+
33
+ "todo_task": """You are a helpful assistant.
34
+ Human: Please create a to-do list for the following task: {task}
35
+ Assistant:""",
36
+
37
+ "map_function": "*map(lambda x: image_url, baseframes_list)",
38
+
39
+ "SQL_AGENT_SYS_PROMPT": """You are an expert SQL agent. Your task is to generate and execute SQL queries based on user requests.
40
+ RULES:
41
+ - THINK step by step before answering.
42
+ - Use the provided database schema to inform your queries.
43
+ - When you need to retrieve data, generate a SQL query and execute it using the provided tools.
44
+ - Read-only mode: Do not attempt to modify the database.
45
+ - NO INSERT/UPDATE/DELETE/ALTER/DROP/CREATE/REPLACE/TRUNCATE statements allowed.
46
+ - LIMIT your results to 10 rows. Unless specified otherwise.
47
+ - If you encounter an error while executing a query, analyze the error message and adjust your query accordingly.
48
+ - Prefer using explicit column names instead of SELECT * for better performance.
49
+ - Always ensure your SQL syntax is correct. """
50
+ }
51
+
52
+ def get_template(self, name: str) -> str:
53
+ """
54
+ Get a prompt template by name.
55
+ Args:
56
+ name (str): The key name of the prompt.
57
+ Returns:
58
+ str: The prompt template string.
59
+ """
60
+ template = self.templates.get(name)
61
+ if not template:
62
+ raise ValueError(f"Prompt '{name}' not found. Available prompts: {list(self.templates.keys())}")
63
+ return template
64
+
65
+ def render_prompt(self, name: str, context: dict = None) -> str:
66
+ """
67
+ Fill and return a rendered prompt string.
68
+ Args:
69
+ name (str): The key name of the prompt.
70
+ context (dict): Variables to fill into the template.
71
+ Returns:
72
+ str: The final rendered prompt text.
73
+ """
74
+ template = self.get_template(name)
75
+ chat_prompt = ChatPromptTemplate.from_template(template)
76
+ rendered = chat_prompt.invoke(context or {})
77
+ return rendered.to_string()
@@ -1,5 +1,5 @@
1
1
  MAJOR_VERSION = 1
2
2
  MINOR_VERSION = 1
3
- PATCH_VERSION = 62
3
+ PATCH_VERSION = 64
4
4
  version = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
5
5
  __all__ = ['MAJOR_VERSION', 'MINOR_VERSION', 'PATCH_VERSION', 'version']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mb_rag
3
- Version: 1.1.62
3
+ Version: 1.1.64
4
4
  Summary: RAG function file
5
5
  Author: ['Malav Bateriwala']
6
6
  Requires-Python: >=3.8
@@ -3,6 +3,7 @@ pyproject.toml
3
3
  setup.py
4
4
  mb_rag/__init__.py
5
5
  mb_rag/basic.py
6
+ mb_rag/prompts_bank.py
6
7
  mb_rag/version.py
7
8
  mb_rag.egg-info/PKG-INFO
8
9
  mb_rag.egg-info/SOURCES.txt
@@ -12,7 +13,6 @@ mb_rag.egg-info/top_level.txt
12
13
  mb_rag/chatbot/__init__.py
13
14
  mb_rag/chatbot/chains.py
14
15
  mb_rag/chatbot/conversation.py
15
- mb_rag/chatbot/prompts.py
16
16
  mb_rag/rag/__init__.py
17
17
  mb_rag/rag/embeddings.py
18
18
  mb_rag/utils/__init__.py
@@ -1,59 +0,0 @@
1
- ## file for storing basic prompts template
2
- from langchain.prompts import ChatPromptTemplate
3
-
4
- __all__ = ["prompts", "invoke_prompt"]
5
-
6
- class prompts:
7
- """
8
- Class to get different prompts example for chatbot and templates
9
- """
10
-
11
- def get_code_prompts(self):
12
- """
13
- Get code prompts
14
- Returns:
15
- str: Code prompt
16
- """
17
- list_code_prompts = {'coding_python ': """You are a Python developer.
18
- Human: {}"""}
19
-
20
- def get_text_prompts(self):
21
- """
22
- Get text prompts
23
- Returns:
24
- str: Text prompt
25
- """
26
- list_text_prompts = {
27
- 'multiple_placeholders': """You are a helpful assistant.
28
- Human: Tell me a more about {adjective1} and its relation to {adjective2}.
29
- Assistant:"""
30
- }
31
-
32
- def get_image_prompts(self):
33
- """
34
- Get image prompts
35
- Returns:
36
- str: Image prompt
37
- """
38
- list_image_prompts = {'map_function': "*map(lambda x: image_url, baseframes_list)"} # for passing multiple images from a video or a list of images
39
-
40
- def get_assistant_prompts(self):
41
- """
42
- Get assistant prompts
43
- Returns:
44
- str: Assistant prompt
45
- """
46
- list_assistant_prompts = {}
47
-
48
- def invoke_prompt(template: str, input_dict : dict = None):
49
- """
50
- Invoke a prompt
51
- Args:
52
- template (str): Template for the prompt
53
- input_dict (dict): Input dictionary for the prompt
54
- Returns:
55
- str: Prompt
56
- """
57
- prompt_multiple = ChatPromptTemplate.from_template(template)
58
- prompt = prompt_multiple.invoke(input_dict)
59
- return prompt
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes