mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
170 lines
5 KiB
Python
170 lines
5 KiB
Python
|
|
"""
|
|
Simple LLM service, performs text prompt completion using GoogleAIStudio.
|
|
Input is prompt, output is response.
|
|
"""
|
|
|
|
#
|
|
# Using this SDK:
|
|
# https://googleapis.github.io/python-genai/genai.html#module-genai.client
|
|
#
|
|
# Seems to have simpler dependencies on the 'VertexAI' service, which
|
|
# TrustGraph implements in the trustgraph-vertexai package.
|
|
#
|
|
|
|
from google import genai
|
|
from google.genai import types
|
|
from google.genai.types import HarmCategory, HarmBlockThreshold
|
|
from google.api_core.exceptions import ResourceExhausted
|
|
import os
|
|
import logging
|
|
|
|
# Module logger
|
|
logger = logging.getLogger(__name__)
|
|
|
|
from .... exceptions import TooManyRequests
|
|
from .... base import LlmService, LlmResult
|
|
|
|
default_ident = "text-completion"
|
|
|
|
default_model = 'gemini-2.0-flash-001'
|
|
default_temperature = 0.0
|
|
default_max_output = 8192
|
|
default_api_key = os.getenv("GOOGLE_AI_STUDIO_KEY")
|
|
|
|
class Processor(LlmService):
|
|
|
|
def __init__(self, **params):
|
|
|
|
model = params.get("model", default_model)
|
|
api_key = params.get("api_key", default_api_key)
|
|
temperature = params.get("temperature", default_temperature)
|
|
max_output = params.get("max_output", default_max_output)
|
|
|
|
if api_key is None:
|
|
raise RuntimeError("Google AI Studio API key not specified")
|
|
|
|
super(Processor, self).__init__(
|
|
**params | {
|
|
"model": model,
|
|
"temperature": temperature,
|
|
"max_output": max_output,
|
|
}
|
|
)
|
|
|
|
self.client = genai.Client(api_key=api_key)
|
|
self.model = model
|
|
self.temperature = temperature
|
|
self.max_output = max_output
|
|
|
|
block_level = HarmBlockThreshold.BLOCK_ONLY_HIGH
|
|
|
|
self.safety_settings = [
|
|
types.SafetySetting(
|
|
category = HarmCategory.HARM_CATEGORY_HATE_SPEECH,
|
|
threshold = block_level,
|
|
),
|
|
types.SafetySetting(
|
|
category = HarmCategory.HARM_CATEGORY_HARASSMENT,
|
|
threshold = block_level,
|
|
),
|
|
types.SafetySetting(
|
|
category = HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT,
|
|
threshold = block_level,
|
|
),
|
|
types.SafetySetting(
|
|
category = HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
|
|
threshold = block_level,
|
|
),
|
|
# There is a documentation conflict on whether or not
|
|
# CIVIC_INTEGRITY is a valid category
|
|
# HarmCategory.HARM_CATEGORY_CIVIC_INTEGRITY: block_level,
|
|
]
|
|
|
|
logger.info("GoogleAIStudio LLM service initialized")
|
|
|
|
async def generate_content(self, system, prompt):
|
|
|
|
generation_config = types.GenerateContentConfig(
|
|
temperature = self.temperature,
|
|
top_p = 1,
|
|
top_k = 40,
|
|
max_output_tokens = self.max_output,
|
|
response_mime_type = "text/plain",
|
|
system_instruction = system,
|
|
safety_settings = self.safety_settings,
|
|
)
|
|
|
|
try:
|
|
|
|
response = self.client.models.generate_content(
|
|
model=self.model,
|
|
config=generation_config,
|
|
contents=prompt,
|
|
)
|
|
|
|
resp = response.text
|
|
inputtokens = int(response.usage_metadata.prompt_token_count)
|
|
outputtokens = int(response.usage_metadata.candidates_token_count)
|
|
logger.debug(f"LLM response: {resp}")
|
|
logger.info(f"Input Tokens: {inputtokens}")
|
|
logger.info(f"Output Tokens: {outputtokens}")
|
|
|
|
resp = LlmResult(
|
|
text = resp,
|
|
in_token = inputtokens,
|
|
out_token = outputtokens,
|
|
model = self.model
|
|
)
|
|
|
|
return resp
|
|
|
|
except ResourceExhausted as e:
|
|
|
|
logger.warning("Rate limit exceeded")
|
|
|
|
# Leave rate limit retries to the default handler
|
|
raise TooManyRequests()
|
|
|
|
except Exception as e:
|
|
|
|
# Apart from rate limits, treat all exceptions as unrecoverable
|
|
|
|
logger.error(f"GoogleAIStudio LLM exception ({type(e).__name__}): {e}", exc_info=True)
|
|
raise e
|
|
|
|
@staticmethod
|
|
def add_args(parser):
|
|
|
|
LlmService.add_args(parser)
|
|
|
|
parser.add_argument(
|
|
'-m', '--model',
|
|
default=default_model,
|
|
help=f'LLM model (default: {default_model})'
|
|
)
|
|
|
|
parser.add_argument(
|
|
'-k', '--api-key',
|
|
default=default_api_key,
|
|
help=f'GoogleAIStudio API key'
|
|
)
|
|
|
|
parser.add_argument(
|
|
'-t', '--temperature',
|
|
type=float,
|
|
default=default_temperature,
|
|
help=f'LLM temperature parameter (default: {default_temperature})'
|
|
)
|
|
|
|
parser.add_argument(
|
|
'-x', '--max-output',
|
|
type=int,
|
|
default=default_max_output,
|
|
help=f'LLM max output tokens (default: {default_max_output})'
|
|
)
|
|
|
|
def run():
|
|
|
|
Processor.launch(default_ident, __doc__)
|
|
|