Complete guide to using CVG Neuron AI for business intelligence, project management, and technical consulting.
The fastest way to get started is our free online chat interface:
Free Chat Features: Full access to 290 projects of training data, no credit card required, commercial use allowed.
CVG Neuron is trained on real-world business operations and technical workflows:
Access free training data and example scripts:
git clone https://github.com/cleargeo/cvg-neuron-public
cd cvg-neuron-public
pip install -r requirements.txt
python examples/query_neuron.py
Download pre-trained models:
import requests
API_KEY = "your-api-key-here"
endpoint = "https://neuron.cleargeo.tech/api/v1/chat"
response = requests.post(
endpoint,
headers={"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"},
json={
"action": "create_chat",
"model": "gpt-3.5-turbo",
"title": "Example"
}
)
print(response.json())
GET /api/v1/health - Health checkPOST /api/v1/chat - Authenticated chat/session logging (requires session token)POST /api/v1/chat-with-limits - Rate-limited chat endpoint (anonymous + registered)View Complete API Documentation →
Query: "I need to respond to an RFP for coastal vulnerability assessment
for a municipal client. The project area is 50 square miles of coastline.
What should my methodology section include?"
Response: Based on 47 similar coastal vulnerability projects in our training data,
a comprehensive methodology should include:
1. Data Collection & Review (2-3 weeks)
- Historical storm surge data
- NOAA tide gauge records
- FEMA flood maps
- LiDAR elevation data
...
[See full example in case studies]
Query: "Generate Python code to batch process 100 sea level rise
raster scenarios using ArcPy"
Response: [Returns complete, tested Python script based on actual
production workflows from our training data]
Query: "Who should I include in stakeholder meetings for a flood
mitigation project?"
Response: Based on 290 projects, typical stakeholders include:
- Municipal public works director
- Emergency management coordinator
- Planning/zoning department
- Local residents (public meetings)
...
[Includes engagement timing and communication strategies from real projects]
Use CVG Neuron directly from ArcGIS Pro Python console:
import arcpy
from cvg_neuron import NeuronClient
# Initialize client
neuron = NeuronClient(api_key="your-key")
# Get methodology recommendation
methodology = neuron.query(
"Best approach for analyzing 50-year flood zones with 3ft SLR",
context="arcgis_workflow"
)
# Apply recommended workflow
print(methodology['steps'])
# Execute automated workflow...
Coming soon: CVG Neuron extension for VS Code with inline code suggestions trained on our production workflows.
CVG Neuron is trained on successful projects from 2018-2025 primarily in Florida and the southeastern US. Performance is best for:
For projects outside these specialties, responses will be more general but still informed by proven methodologies.
Contact: azelenski@clearviewgeographic.com