Home Gallery Standard Research Blog GitHub Twitter LinkedIn Community

avante.nvim system prompt

Category: Coding agents. Audited against the AISPA standard.

What is in avante.nvim's system prompt?

avante.nvim's full system prompt: 1 version, 6,365 characters. Audited against AISPA.

The full text of 1 prompt is reproduced below, 6,365 characters in all, each read instruction by instruction against the eight AISPA dimensions. Nothing was flagged as working against the person on the other end.

1 Prompts on record
0 Flagged instructions
AI audit Audit source

avante.nvim - py rag service README

6365 characters

# RAG Service Configuration This document describes how to configure the RAG service, including setting up Language Model (LLM) and Embedding providers. ## Provider Support Matrix The following table shows which model types are supported by each provider: | Provider | LLM Support | Embedding Support | | ---------- | ----------- | ----------------- | | dashscope | Yes | Yes | | ollama | Yes | Yes | | openai | Yes | Yes | | openrouter | Yes | No | ## LLM Provider Configuration The `llm` section in the configuration file is used to configure the Language Model (LLM) used by the RAG service. Here are the configuration examples for each supported LLM provider: ### OpenAI LLM Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/llms/llama-index-llms-openai/llama_index/llms/openai/base.py#L130) ```lua llm = { -- Configuration for the Language Model (LLM) used by the RAG service provider = "openai", -- The LLM provider ("openai") endpoint = "https://api.openai.com/v1", -- The LLM API endpoint api_key = "OPENAI_API_KEY", -- The environment variable name for the LLM API key model = "gpt-4o-mini", -- The LLM model name (e.g., "gpt-4o-mini", "gpt-3.5-turbo") extra = {-- Extra configuration options for the LLM (optional) temperature = 0.7, -- Controls the randomness of the output. Lower values make it more deterministic. max_tokens = 512, -- The maximum number of tokens to generate in the completion. -- system_prompt = "You are a helpful assistant.", -- A system prompt to guide the model's behavior. -- timeout = 120, -- Request timeout in seconds. }, }, ``` ### DashScope LLM Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/llms/llama-index-llms-dashscope/llama_index/llms/dashscope/base.py#L155) ```lua llm = { -- Configuration for the Language Model (LLM) used by the RAG service provider = "dashscope", -- The LLM provider ("dashscope") endpoint = "", -- The LLM API endpoint (DashScope typically uses default or environment variables) api_key = "DASHSCOPE_API_KEY", -- The environment variable name for the LLM API key model = "qwen-plus", -- The LLM model name (e.g., "qwen-plus", "qwen-max") extra = nil, -- Extra configuration options for the LLM (optional) }, ``` ### Ollama LLM Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/llms/llama-index-llms-ollama/llama_index/llms/ollama/base.py#L65) ```lua llm = { -- Configuration for the Language Model (LLM) used by the RAG service provider = "ollama", -- The LLM provider ("ollama") endpoint = "http://localhost:11434", -- The LLM API endpoint for Ollama api_key = "", -- Ollama typically does not require an API key model = "llama2", -- The LLM model name (e.g., "llama2", "mistral") extra = nil, -- Extra configuration options for the LLM (optional) Kristin", -- Extra configuration options for the LLM (optional) }, ``` ### OpenRouter LLM Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/llms/llama-index-llms-openrouter/llama_index/llms/openrouter/base.py#L17) ```lua llm = { -- Configuration for the Language Model (LLM) used by the RAG service provider = "openrouter", -- The LLM provider ("openrouter") endpoint = "https://openrouter.ai/api/v1", -- The LLM API endpoint for OpenRouter api_key = "OPENROUTER_API_KEY", -- The environment variable name for the LLM API key model = "openai/gpt-4o-mini", -- The LLM model name (e.g., "openai/gpt-4o-mini", "mistralai/mistral-7b-instruct") extra = nil, -- Extra configuration options for the LLM (optional) }, ``` ## Embedding Provider Configuration The `embedding` section in the configuration file is used to configure the Embedding Model used by the RAG service. Here are the configuration examples for each supported Embedding provider: ### OpenAI Embedding Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/embeddings/llama-index-embeddings-openai/llama_index/embeddings/openai/base.py#L214) ```lua embed = { -- Configuration for the Embedding Model used by the RAG service provider = "openai", -- The Embedding provider ("openai") endpoint = "https://api.openai.com/v1", -- The Embedding API endpoint api_key = "OPENAI_API_KEY", -- The environment variable name for the Embedding API key model = "text-embedding-3-large", -- The Embedding model name (e.g., "text-embedding-3-small", "text-embedding-3-large") extra = {-- Extra configuration options for the Embedding model (optional) dimensions = nil, }, }, ``` ### DashScope Embedding Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/embeddings/llama-index-embeddings-dashscope/llama_index/embeddings/dashscope/base.py#L156) ```lua embed = { -- Configuration for the Embedding Model used by the RAG service provider = "dashscope", -- The Embedding provider ("dashscope") endpoint = "", -- The Embedding API endpoint (DashScope typically uses default or environment variables) api_key = "DASHSCOPE_API_KEY", -- The environment variable name for the Embedding API key model = "text-embedding-v3", -- The Embedding model name (e.g., "text-embedding-v2") extra = { -- Extra configuration options for the Embedding model (optional) embed_batch_size = 10, }, }, ``` ### Ollama Embedding Configuration [See more configurations](https://github.com/run-llama/llama_index/blob/main/llama-index-integrations/embeddings/llama-index-embeddings-ollama/llama_index/embeddings/ollama/base.py#L12) ```lua embed = { -- Configuration for the Embedding Model used by the RAG service provider = "ollama", -- The Embedding provider ("ollama") endpoint = "http://localhost:11434", -- The Embedding API endpoint for Ollama api_key = "", -- Ollama typically does not require an API key model = "nomic-embed-text", -- The Embedding model name (e.g., "nomic-embed-text") extra = { -- Extra configuration options for the Embedding model (optional) embed_batch_size = 10, }, }, ```

Questions about avante.nvim's system prompt

Does avante.nvim's system prompt contain instructions that work against the user?

No. Nothing in avante.nvim's system prompt was flagged as working against the person the product is talking to. That is a clean result across all eight AISPA dimensions, not an absence of checking — the full text was read instruction by instruction.

How long is avante.nvim's system prompt?

6,365 characters across 1 prompt on this page. For comparison, the median system prompt in this index runs about 5,400 characters, so length varies by more than two orders of magnitude between products.

How many versions of avante.nvim's system prompt are on record?

1. Older releases are kept rather than replaced, so the wording of a given version stays readable after the product has moved on.

Where did this avante.nvim system prompt come from?

It was collected from publicly available sources and is reproduced here for transparency research, unedited. This site does not extract prompts from products itself.

How was avante.nvim's system prompt audited?

Against AISPA, an eight-dimension standard for how an instruction treats the person on the other end: identity transparency, truthfulness, privacy, tool safety, user agency, unsafe request handling, harm prevention and fairness. This audit was ai audit. The method is described in the paper behind the standard.

How this page was made

The prompt text above is reproduced verbatim from a public source. Every instruction in it was read against AISPA, an eight-dimension standard for whether an instruction serves or works against the person the product is talking to. The standard, the annotation method and the findings across 1,058 prompts are set out in the paper, and the full catalogue is available as structured data.

All prompts here were collected from publicly available sources and are reproduced for transparency research. Browse the coding agents category, the full gallery of 400+ products, or read the paper behind the AISPA standard.