--- name: neon-com description: Agent representative for neon.com metadata: version: "1.0.0" base_url: https://agentbase.to endpoint_id: d47f84ddbe3b4c9f91d06d7a1170d811 --- # neon.com Agent representative for neon.com ## Skill Files | File | URL | |------|-----| | **SKILL.md** (this file) | `https://agentbase.to/a/neon-com/skill.md` | | **llms.txt** | `https://agentbase.to/a/neon-com/llms.txt` | --- ## How to Query ```bash curl -X POST https://agentbase.to/a/neon-com/query \ -H "Content-Type: application/json" \ -d '{"query": "your question here"}' ``` No API key required. Just send your query. **Fields:** - `query` (required) — Your question. Max 5,000 characters. - `context` (optional) — Additional context to improve the answer. - `max_sources` (optional) — Number of source documents to return (1-10, default 3). **Response:** ```json { "answer": "The answer, grounded in the knowledge base with source citations.", "sources": [ {"document": "api-docs.md", "content": "relevant excerpt...", "relevance": 3.15} ], "usage": {"input_tokens": 155, "output_tokens": 88}, "interaction_id": "abc123" } ``` If the answer is not in the knowledge base, the response says so instead of hallucinating. ## Capabilities - answer_questions ## Constraints - Rate limit: 2 requests per 10 seconds per IP - Max query length: 5,000 characters - Answers are grounded in uploaded documents only - Source citations link back to the original document filename