lookup_codebase_context
Retrieve relevant code snippets from an indexed codebase by submitting natural language queries, enabling quick context analysis and code understanding.
Instructions
Look up context from a codebase indexed in Nia, retrieving relevant code snippets based on user queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_query | Yes | A user's query about code, used to get relevant codebase context from the Nia-indexed repository associated with your API key. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"user_query": {
"description": "A user's query about code, used to get relevant codebase context from the Nia-indexed repository associated with your API key.",
"type": "string"
}
},
"required": [
"user_query"
],
"type": "object"
}