h-ai-brain 0.0.21__py3-none-any.whl → 0.0.22__py3-none-any.whl
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.
- h_ai/infrastructure/llm/data_handler.py +10 -6
- h_ai/infrastructure/llm/ollama/ollama_generate_repository.py +2 -2
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/METADATA +1 -1
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/RECORD +8 -8
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/WHEEL +1 -1
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/licenses/LICENSE +0 -0
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/licenses/NOTICE.txt +0 -0
- {h_ai_brain-0.0.21.dist-info → h_ai_brain-0.0.22.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import json
|
2
2
|
|
3
3
|
|
4
|
-
def parse_json_data(json_string: str) -> dict |None:
|
4
|
+
def parse_json_data(json_string: str) -> dict | None:
|
5
5
|
try:
|
6
6
|
# Check for empty string
|
7
7
|
if not json_string or not json_string.strip():
|
@@ -14,17 +14,21 @@ def parse_json_data(json_string: str) -> dict |None:
|
|
14
14
|
if match:
|
15
15
|
json_string = match.group(1).strip()
|
16
16
|
else:
|
17
|
-
# If no code block found,
|
18
|
-
|
19
|
-
|
17
|
+
# If no code block found, check for various JSON prefixes
|
18
|
+
stripped = json_string.strip()
|
19
|
+
# Check for <json> prefix
|
20
|
+
if stripped.startswith('<json>'):
|
21
|
+
json_string = stripped[6:].strip()
|
22
|
+
# Check for 'json' prefix
|
23
|
+
elif stripped.startswith('json'):
|
24
|
+
json_string = stripped[4:].strip()
|
20
25
|
|
21
26
|
# Parse the JSON data
|
22
27
|
data = json.loads(json_string)
|
23
|
-
|
24
28
|
return data
|
25
29
|
except json.JSONDecodeError as e:
|
26
30
|
print(f"Error parsing JSON data: {e}")
|
27
31
|
return {}
|
28
32
|
except Exception as e:
|
29
33
|
print(f"Unexpected error while parsing JSON data: {e}")
|
30
|
-
return {}
|
34
|
+
return {}
|
@@ -42,11 +42,11 @@ class OllamaGenerateRepository(LlmGenerateRepository):
|
|
42
42
|
payload["num_ctx"] = f"{max_tokens}"
|
43
43
|
|
44
44
|
try:
|
45
|
-
print(payload)
|
45
|
+
#print(payload)
|
46
46
|
response = requests.post(url, json=payload)
|
47
47
|
response.raise_for_status()
|
48
48
|
|
49
|
-
print(response.json())
|
49
|
+
#print(response.json())
|
50
50
|
|
51
51
|
response_content = response.json()["response"]
|
52
52
|
return clean_llm_response(response_content)
|
@@ -11,20 +11,20 @@ h_ai/domain/reasoning/text_analysis.py,sha256=rmCUHWzJ3muFBorVXx7HcU2Sw-UfXFOuAV
|
|
11
11
|
h_ai/domain/reasoning/tool_message.py,sha256=jpbfbJXj6oqZyB3lDxGOUyFB4faHtXAaEOVBHgTgSnk,67
|
12
12
|
h_ai/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
13
|
h_ai/infrastructure/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
|
-
h_ai/infrastructure/llm/data_handler.py,sha256=
|
14
|
+
h_ai/infrastructure/llm/data_handler.py,sha256=9wAxF5v409DGu7hn_4MGubGe0XyiowYtC30ftvnRDdE,1198
|
15
15
|
h_ai/infrastructure/llm/llm_response_cleaner.py,sha256=pp1K7I77hagrC1r6Ib61-iSNQnU6wlM54bRmOUa7eFk,859
|
16
16
|
h_ai/infrastructure/llm/prompt_helper.py,sha256=QjxPbNW7hu2wBIi9GLJ7r00ELytT2Wr1JKDAA1jB2U4,238
|
17
17
|
h_ai/infrastructure/llm/prompt_loader.py,sha256=hVep4BuheFc6Arple3OrV249KSwEqjIqHbAEJ_ymuvI,460
|
18
18
|
h_ai/infrastructure/llm/ollama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
h_ai/infrastructure/llm/ollama/ollama_chat_repository.py,sha256=GALea7UWLtKyt767Frtl3uv8rvy42HrOKMIQGpqq-H0,2108
|
20
|
-
h_ai/infrastructure/llm/ollama/ollama_generate_repository.py,sha256=
|
20
|
+
h_ai/infrastructure/llm/ollama/ollama_generate_repository.py,sha256=np6vYfn9sVrf_oKMN0y1QLdf7X2seWBOjvPS8OQghkc,1969
|
21
21
|
h_ai/infrastructure/llm/ollama/ollama_tool_repository.py,sha256=7UZ-qsgXQUcJFx1qY7SVI7p3FhIy0Drdqs7jZIp42Ag,4683
|
22
22
|
h_ai/infrastructure/llm/ollama/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
23
|
h_ai/infrastructure/llm/ollama/models/ollama_chat_message.py,sha256=ZIz4PQ3869vI3xAYYufPrxXpacajRDtOI8RDl5Dm9RQ,305
|
24
24
|
h_ai/infrastructure/llm/ollama/models/ollama_chat_session.py,sha256=GZ_ddpbWa8iy6NZq50vokUFVZBiX0WNa81z9-r9RzTY,392
|
25
|
-
h_ai_brain-0.0.
|
26
|
-
h_ai_brain-0.0.
|
27
|
-
h_ai_brain-0.0.
|
28
|
-
h_ai_brain-0.0.
|
29
|
-
h_ai_brain-0.0.
|
30
|
-
h_ai_brain-0.0.
|
25
|
+
h_ai_brain-0.0.22.dist-info/licenses/LICENSE,sha256=SbvpEU5JIU3yzMMkyzrI0dGqHDoJR_lMKGdl6GZHsy4,11558
|
26
|
+
h_ai_brain-0.0.22.dist-info/licenses/NOTICE.txt,sha256=vxeIKUiGqAePLvDW4AVm3Xh-3BcsvMtCMn1tbsr9zsE,668
|
27
|
+
h_ai_brain-0.0.22.dist-info/METADATA,sha256=1qw7KdgK6bWTAEZVsfqGpjEe-94RVtApgK6e67EnqUs,531
|
28
|
+
h_ai_brain-0.0.22.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
29
|
+
h_ai_brain-0.0.22.dist-info/top_level.txt,sha256=3MChDBWvDJV4cEHuZhzeODxQ4ewtw-arOuyaDOc6sIo,5
|
30
|
+
h_ai_brain-0.0.22.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|