Skip to main content
Interact with your Azure models using LLM.

Parameters

An Azure LLM interface can have the following parameters:

Usage

Here is how you setup an interface to interact with your Azure models.
1
Create a config.yaml file in the same directory as your code.
  1. πŸ“ src
    1. 🐍 PythonCode.py
    2. 🐍 PyNotebook.ipynb
    3. πŸ“„ config.yaml
2
Define your Azure OpenAI provider and models inside the config.yaml file.
If you are not sure, you can leave max_tokens, input_tokens and the other parameters as 0
3
Create your llm instance.
4
Optional: You can add your parameters as follows:
You are done setting up your Azure LLM!

What’s next?

LLM.chat()

Learn how to send messeges and recieve responses next!

Tool calling Agent

Learn how to build a tool calling agent using llmstudio.