SkazuHD's picture
init space
d660b02
from loguru import logger
from llm_engineering.model.inference.inference import LLMInferenceSagemakerEndpoint
from llm_engineering.model.inference.run import InferenceExecutor
from llm_engineering.settings import settings
if __name__ == "__main__":
text = "Write me a post about AWS SageMaker inference endpoints."
logger.info(f"Running inference for text: '{text}'")
llm = LLMInferenceSagemakerEndpoint(
endpoint_name=settings.SAGEMAKER_ENDPOINT_INFERENCE, inference_component_name=None
)
answer = InferenceExecutor(llm, text).execute()
logger.info(f"Answer: '{answer}'")