h-ai-brain 0.0.22__tar.gz → 0.0.23__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.
- {h_ai_brain-0.0.22/src/h_ai_brain.egg-info → h_ai_brain-0.0.23}/PKG-INFO +1 -1
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/pyproject.toml +1 -1
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/application/hai_service.py +2 -1
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/llm_config.py +3 -2
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/ollama_generate_repository.py +8 -2
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23/src/h_ai_brain.egg-info}/PKG-INFO +1 -1
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/LICENSE +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/NOTICE.txt +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/setup.cfg +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/application/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/llm_chat_repository.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/llm_generate_respository.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/llm_tool_repository.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/text_analysis.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/tool_message.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/data_handler.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/llm_response_cleaner.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/models/__init__.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/models/ollama_chat_message.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/models/ollama_chat_session.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/ollama_chat_repository.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/ollama_tool_repository.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/prompt_helper.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/prompt_loader.py +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai_brain.egg-info/SOURCES.txt +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai_brain.egg-info/dependency_links.txt +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai_brain.egg-info/requires.txt +0 -0
- {h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai_brain.egg-info/top_level.txt +0 -0
@@ -9,7 +9,8 @@ class HaiService:
|
|
9
9
|
self.llm_config.url,
|
10
10
|
self.llm_config.model_name,
|
11
11
|
temperature=self.llm_config.temperature,
|
12
|
-
max_tokens=self.llm_config.max_tokens
|
12
|
+
max_tokens=self.llm_config.max_tokens,
|
13
|
+
api_token=self.llm_config.api_token)
|
13
14
|
|
14
15
|
def ask_question(self, question: str, system_prompt: str = None, max_tokens = None) -> str:
|
15
16
|
return self.llm_generate_repository.generate(question, system_prompt, max_tokens)
|
@@ -1,6 +1,7 @@
|
|
1
1
|
class LLMConfig:
|
2
|
-
def __init__(self, url: str, model_name: str, temperature: float = 0.6, max_tokens: int = 2500):
|
2
|
+
def __init__(self, url: str, model_name: str, temperature: float = 0.6, max_tokens: int = 2500, api_token: str = None):
|
3
3
|
self.url = url
|
4
4
|
self.model_name = model_name
|
5
5
|
self.temperature = temperature
|
6
|
-
self.max_tokens = max_tokens
|
6
|
+
self.max_tokens = max_tokens
|
7
|
+
self.api_token = api_token
|
@@ -8,13 +8,14 @@ from ....domain.reasoning.llm_generate_respository import LlmGenerateRepository
|
|
8
8
|
|
9
9
|
class OllamaGenerateRepository(LlmGenerateRepository):
|
10
10
|
|
11
|
-
def __init__(self, api_url: str, model_name: str, system_prompt: str = None, temperature: float = None, seed: int = None, max_tokens: int = 5000):
|
11
|
+
def __init__(self, api_url: str, model_name: str, system_prompt: str = None, temperature: float = None, seed: int = None, max_tokens: int = 5000, api_token: str = None):
|
12
12
|
self.model_name = model_name
|
13
13
|
self.system_prompt = system_prompt
|
14
14
|
self.api_url = api_url
|
15
15
|
self.temperature = temperature
|
16
16
|
self.seed = seed
|
17
17
|
self.max_tokens = max_tokens
|
18
|
+
self.api_token = api_token
|
18
19
|
|
19
20
|
|
20
21
|
def generate(self, user_prompt: str, system_prompt: str = None, session_id: str = None, max_tokens: int = None) -> str|None:
|
@@ -41,9 +42,14 @@ class OllamaGenerateRepository(LlmGenerateRepository):
|
|
41
42
|
if max_tokens:
|
42
43
|
payload["num_ctx"] = f"{max_tokens}"
|
43
44
|
|
45
|
+
headers = {}
|
46
|
+
if self.api_token:
|
47
|
+
headers["Authorization"]="Bearer "+self.api_token
|
48
|
+
|
44
49
|
try:
|
45
50
|
#print(payload)
|
46
|
-
response = requests.post(url, json=payload)
|
51
|
+
response = requests.post(url, json=payload, headers=headers)
|
52
|
+
|
47
53
|
response.raise_for_status()
|
48
54
|
|
49
55
|
#print(response.json())
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/domain/reasoning/llm_generate_respository.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/models/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/ollama_chat_repository.py
RENAMED
File without changes
|
{h_ai_brain-0.0.22 → h_ai_brain-0.0.23}/src/h_ai/infrastructure/llm/ollama/ollama_tool_repository.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|