from genai_stack.model import AzureModel
from genai_stack.stack.stack import Stack
llm = AzureModel.from_kwargs(parameters={"api_key":"","azure_deployment":"","azure_endpoint":""})
Stack(model=llm)
model_response = llm.predict("How long AI has been around.")
print(model_response)
Need to add langchain_community inside requirements @sam-aiplanet
Inference:
Need to add langchain_community inside requirements @sam-aiplanet