Utils
check_llm_as_a_judge_client()
Check the LLM as a judge client by sending a message to the model.
Uses Langchain OpenAIChat ou Langchain AzureChatas the LLM client
Source code in src/utils.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
|
check_llm_client()
Check the LLM client by sending a message to the model.
Uses OpenAI/AzureOpenAI as the LLM client
Source code in src/utils.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
|
get_llm_as_a_judge_client()
Initializes and returns a LLM as a judge client based on the configured provider.
Depending on the value of settings.LLMAAJ_PROVIDER
, this function will initialize
either an OpenAI or AzureOpenAI client and embedding client from Langchain OpenAI library. It loads the client with
the appropriate settings and logs the model being used.
If settings.ENABLE_EVALUATION
is False, the function will return (None, None)
and log a warning.
Returns:
Name | Type | Description |
---|---|---|
tuple |
A tuple containing
- the initialized client and the embedding client (AzureOpenAI and AzureOpenAIEmbeddings or OpenAI and
OpenAIEmbeddings)
- or |
Raises:
Type | Description |
---|---|
ValueError
|
If the configured LLM provider is unsupported. |
Source code in src/utils.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
|
get_llm_client()
Initializes and returns a language model client based on the configured provider.
Depending on the value of settings.LLM_PROVIDER
, this function will initialize
either an OpenAI or AzureOpenAI client from OpenAI library. It loads the client with the appropriate
settings and logs the model being used.
Returns:
Name | Type | Description |
---|---|---|
tuple |
tuple[object, str]
|
A tuple containing the initialized client and the model name. |
Raises:
Type | Description |
---|---|
ValueError
|
If the configured LLM provider is unsupported. |
Source code in src/utils.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
|
initialize()
Initialize the settings, logger, and search client.
Reads the environment variables from the .env file defined in the Settings class.
Returns:
Type | Description |
---|---|
settings |
|
loguru_logger |
|
search_client |
Source code in src/utils.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|