# LLM Node Configuration

LLM (Language Model) nodes are the core of Automateo's functionality. Here's how to configure them:

1. **Prompt Templates**
   * Use "{variable}" syntax to reference outputs from previous nodes
   * Example: "Summarize the following text: {input\_text}"
2. **Model Selection**
   * Choose from various LLM models:
     * ChatGPT 3
     * ChatGPT 4
     * Mixtral
     * LLaMA
     * (Other available models)
3. **Output Format**
   * Specify the desired output format:
     * Text: For general text output
     * Markdown: For formatted text
     * JSON schema: For structured data output

Remember to test your LLM nodes with sample inputs to ensure they produce the expected outputs before integrating them into your production workflows.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.automateo.app/llm-node-configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
