Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
811 changes: 811 additions & 0 deletions FLOW_ANALYSIS.md

Large diffs are not rendered by default.

434 changes: 434 additions & 0 deletions TREASURE_HUNT_SUMMARY.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion demos/config

This file was deleted.

58 changes: 58 additions & 0 deletions demos/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# NetLogo LLM Extension Configuration
# Choose ONE provider by uncommenting the relevant section

# ============================================
# OPTION 1: Ollama (Local, FREE, No API Key)
# ============================================
# Best for: Testing, privacy, no costs
# Setup: Install Ollama from https://ollama.ai
# Then run: ollama pull llama3.2
provider=ollama
model=llama3.2:latest
base_url=http://localhost:11434
temperature=0.7
max_tokens=500
timeout_seconds=60

# ============================================
# OPTION 2: OpenAI (Cloud, Requires API Key)
# ============================================
# Best for: High quality responses
# Setup: Get API key from https://platform.openai.com
#provider=openai
#api_key=YOUR_OPENAI_API_KEY_HERE
#model=gpt-4o-mini
#temperature=0.7
#max_tokens=500
#timeout_seconds=30

# ============================================
# OPTION 3: Anthropic Claude (Cloud, API Key)
# ============================================
# Best for: Detailed reasoning, long context
# Setup: Get API key from https://console.anthropic.com
#provider=anthropic
#api_key=YOUR_ANTHROPIC_API_KEY_HERE
#model=claude-3-5-sonnet-20241022
#temperature=0.7
#max_tokens=500
#timeout_seconds=30

# ============================================
# OPTION 4: Google Gemini (Cloud, API Key)
# ============================================
# Best for: Fast responses, good reasoning
# Setup: Get API key from https://makersuite.google.com
#provider=gemini
#api_key=YOUR_GEMINI_API_KEY_HERE
#model=gemini-1.5-flash
#temperature=0.7
#max_tokens=500
#timeout_seconds=30

# ============================================
# CONFIGURATION PARAMETERS
# ============================================
# temperature: 0.0 = deterministic, 2.0 = very creative (default 0.7)
# max_tokens: Maximum response length (default 500)
# timeout_seconds: Request timeout (default 30)
Loading