igbot-base 0.0.16__tar.gz → 0.0.18__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 (30) hide show
  1. {igbot_base-0.0.16 → igbot_base-0.0.18}/PKG-INFO +1 -1
  2. igbot_base-0.0.18/igbot_base/base_exception.py +81 -0
  3. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/llm.py +1 -1
  4. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base.egg-info/PKG-INFO +1 -1
  5. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base.egg-info/SOURCES.txt +2 -8
  6. {igbot_base-0.0.16 → igbot_base-0.0.18}/pyproject.toml +5 -1
  7. igbot_base-0.0.16/igbot_base/exception/agent_exception.py +0 -14
  8. igbot_base-0.0.16/igbot_base/exception/base_exception.py +0 -12
  9. igbot_base-0.0.16/igbot_base/exception/llm_exception.py +0 -13
  10. igbot_base-0.0.16/igbot_base/exception/memory_exception.py +0 -14
  11. igbot_base-0.0.16/igbot_base/exception/prompt_exception.py +0 -14
  12. igbot_base-0.0.16/igbot_base/exception/retriever_exception.py +0 -14
  13. igbot_base-0.0.16/igbot_base/exception/tool_exception.py +0 -14
  14. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/__init__.py +0 -0
  15. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/agent.py +0 -0
  16. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/agent_response.py +0 -0
  17. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/exception_handler.py +0 -0
  18. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/llmmemory.py +0 -0
  19. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/logging_adapter.py +0 -0
  20. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/models.py +0 -0
  21. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/persistable_memory.py +0 -0
  22. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/prompt_template.py +0 -0
  23. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/response_formats.py +0 -0
  24. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/retriever.py +0 -0
  25. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/tool.py +0 -0
  26. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base/vectorstore.py +0 -0
  27. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base.egg-info/dependency_links.txt +0 -0
  28. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base.egg-info/requires.txt +0 -0
  29. {igbot_base-0.0.16 → igbot_base-0.0.18}/igbot_base.egg-info/top_level.txt +0 -0
  30. {igbot_base-0.0.16 → igbot_base-0.0.18}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: igbot_base
3
- Version: 0.0.16
3
+ Version: 0.0.18
4
4
  Summary: Base classes for igbot
5
5
  Author-email: Igor Kopeć <igor.kopec95@gmail.com>
6
6
  License: LGPL-3.0-or-later
@@ -0,0 +1,81 @@
1
+
2
+
3
+
4
+ class IgBotBaseException(Exception):
5
+
6
+ def __init__(self, message, cause: Exception = None):
7
+ super().__init__(message)
8
+ self.cause = cause
9
+
10
+ def __str__(self):
11
+ result = self.args[0]
12
+ if self.cause:
13
+ result += f" Caused by: {self.cause}"
14
+
15
+ return result
16
+
17
+
18
+ class BaseAgentException(IgBotBaseException):
19
+
20
+ def __init__(self, message, agent: object, cause: Exception = None):
21
+ super().__init__(message, cause)
22
+ self.agent = agent.__str__()
23
+
24
+ def __str__(self):
25
+ result = super().__str__()
26
+ result += f" at agent {self.agent}"
27
+
28
+
29
+ class BaseLlmException(IgBotBaseException):
30
+
31
+ def __init__(self, message, llm: object, cause: Exception = None):
32
+ super().__init__(message, cause)
33
+ self.llm = llm.__str__()
34
+
35
+ def __str__(self):
36
+ result = super().__str__()
37
+ result += f" at llm {self.llm}"
38
+
39
+
40
+ class BaseMemoryException(IgBotBaseException):
41
+
42
+ def __init__(self, message, memory: object, cause: Exception = None):
43
+ super().__init__(message, cause)
44
+ self.memory = memory.__str__()
45
+
46
+ def __str__(self):
47
+ result = super().__str__()
48
+ result += f" at memory {self.memory}"
49
+
50
+
51
+ class BasePromptException(IgBotBaseException):
52
+
53
+ def __init__(self, message, prompt: object, cause: Exception = None):
54
+ super().__init__(message, cause)
55
+ self.prompt = prompt.__str__()
56
+
57
+ def __str__(self):
58
+ result = super().__str__()
59
+ result += f" at prompt {self.prompt}"
60
+
61
+
62
+ class BaseRetrieverException(IgBotBaseException):
63
+
64
+ def __init__(self, message, retriever: object, cause: Exception = None):
65
+ super().__init__(message, cause)
66
+ self.retriever = retriever.__str__()
67
+
68
+ def __str__(self):
69
+ result = super().__str__()
70
+ result += f" at retriever {self.retriever}"
71
+
72
+
73
+ class BaseToolException(IgBotBaseException):
74
+
75
+ def __init__(self, message, tool: object, cause: Exception = None):
76
+ super().__init__(message, cause)
77
+ self.tool = tool.__str__()
78
+
79
+ def __str__(self):
80
+ result = super().__str__()
81
+ result += f" at tool {self.tool}"
@@ -7,7 +7,7 @@ from igbot_base.llmmemory import LlmMemory
7
7
  from igbot_base.models import Model
8
8
  from igbot_base.logging_adapter import get_logger
9
9
 
10
- from igbot_base.exception.llm_exception import BaseLlmException
10
+ from igbot_base.base_exception import BaseLlmException
11
11
 
12
12
  logger = get_logger("application")
13
13
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: igbot_base
3
- Version: 0.0.16
3
+ Version: 0.0.18
4
4
  Summary: Base classes for igbot
5
5
  Author-email: Igor Kopeć <igor.kopec95@gmail.com>
6
6
  License: LGPL-3.0-or-later
@@ -2,6 +2,7 @@ pyproject.toml
2
2
  igbot_base/__init__.py
3
3
  igbot_base/agent.py
4
4
  igbot_base/agent_response.py
5
+ igbot_base/base_exception.py
5
6
  igbot_base/exception_handler.py
6
7
  igbot_base/llm.py
7
8
  igbot_base/llmmemory.py
@@ -17,11 +18,4 @@ igbot_base.egg-info/PKG-INFO
17
18
  igbot_base.egg-info/SOURCES.txt
18
19
  igbot_base.egg-info/dependency_links.txt
19
20
  igbot_base.egg-info/requires.txt
20
- igbot_base.egg-info/top_level.txt
21
- igbot_base/exception/agent_exception.py
22
- igbot_base/exception/base_exception.py
23
- igbot_base/exception/llm_exception.py
24
- igbot_base/exception/memory_exception.py
25
- igbot_base/exception/prompt_exception.py
26
- igbot_base/exception/retriever_exception.py
27
- igbot_base/exception/tool_exception.py
21
+ igbot_base.egg-info/top_level.txt
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "igbot_base"
7
- version = "0.0.16"
7
+ version = "0.0.18"
8
8
  description = "Base classes for igbot"
9
9
  authors = [{name = "Igor Kopeć", email = "igor.kopec95@gmail.com"}]
10
10
  license={text="LGPL-3.0-or-later"}
@@ -12,3 +12,7 @@ requires-python = ">=3.12"
12
12
  dependencies = [
13
13
  "openai"
14
14
  ]
15
+
16
+ [tool.setuptools.packages.find]
17
+ include = ["igbot_base*"]
18
+ exclude = ["tests*"]
@@ -1,14 +0,0 @@
1
- from igbot_base.agent import Agent
2
- from igbot_base.exception.base_exception import IgBotBaseException
3
-
4
-
5
- class BaseAgentException(IgBotBaseException):
6
-
7
- def __init__(self, message, agent: Agent, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.agent = agent
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at agent {self.agent}"
14
-
@@ -1,12 +0,0 @@
1
- class IgBotBaseException(Exception):
2
-
3
- def __init__(self, message, cause: Exception = None):
4
- super().__init__(message)
5
- self.cause = cause
6
-
7
- def __str__(self):
8
- result = self.args[0]
9
- if self.cause:
10
- result += f" Caused by: {self.cause}"
11
-
12
- return result
@@ -1,13 +0,0 @@
1
- from igbot_base.exception.base_exception import IgBotBaseException
2
- from igbot_base.llm import Llm
3
-
4
-
5
- class BaseLlmException(IgBotBaseException):
6
-
7
- def __init__(self, message, llm: Llm, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.llm = llm
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at llm {self.llm}"
@@ -1,14 +0,0 @@
1
- from igbot_base.exception.base_exception import IgBotBaseException
2
- from igbot_base.llmmemory import LlmMemory
3
-
4
-
5
- class BaseMemoryException(IgBotBaseException):
6
-
7
- def __init__(self, message, memory: LlmMemory, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.memory = memory
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at memory {self.memory}"
14
-
@@ -1,14 +0,0 @@
1
- from igbot_base.exception.base_exception import IgBotBaseException
2
- from igbot_base.prompt_template import Prompt
3
-
4
-
5
- class BasePromptException(IgBotBaseException):
6
-
7
- def __init__(self, message, prompt: Prompt, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.prompt = prompt
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at prompt {self.prompt}"
14
-
@@ -1,14 +0,0 @@
1
- from igbot_base.exception.base_exception import IgBotBaseException
2
- from igbot_base.retriever import Retriever
3
-
4
-
5
- class BaseRetrieverException(IgBotBaseException):
6
-
7
- def __init__(self, message, retriever: Retriever, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.retriever = retriever
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at retriever {self.retriever}"
14
-
@@ -1,14 +0,0 @@
1
- from igbot_base.exception.base_exception import IgBotBaseException
2
- from igbot_base.tool import Tool
3
-
4
-
5
- class BaseToolException(IgBotBaseException):
6
-
7
- def __init__(self, message, tool: Tool, cause: Exception = None):
8
- super().__init__(message, cause)
9
- self.tool = tool
10
-
11
- def __str__(self):
12
- result = super().__str__()
13
- result += f" at tool {self.tool}"
14
-
File without changes