Langchain integration
Dynamic provisioning out-of-the-box
from cortecs_py import Cortecs
from cortecs_py.integrations.langchain import DedicatedLLM
cortecs = Cortecs()
with DedicatedLLM(cortecs, 'cortecs/phi-4-FP8-Dynamic') as llm:
essay = llm.invoke('Write an essay about dynamic provisioning')
print(essay.content)Last updated