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
13 changes: 11 additions & 2 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ SANDBOX=local # code execution backend: 'local' (default) or 'docke

# Available UI languages (optional, comma-separated).
# Default: en,zh — if not set, both English and Chinese are available.
# Supported values: en, zh (add more after creating locale files)
# Supported values: en, zh, hi (add more after creating locale files)
# Examples:
# AVAILABLE_LANGUAGES=zh # only Chinese, language switcher hidden
# AVAILABLE_LANGUAGES=en,zh,ja # three languages
# AVAILABLE_LANGUAGES=en,zh,hi # three languages, including Hindi
# AVAILABLE_LANGUAGES=

# -------------------------------------------------------------------
Expand Down Expand Up @@ -82,6 +82,15 @@ OLLAMA_ENABLED=true
OLLAMA_API_BASE=http://localhost:11434
OLLAMA_MODELS=qwen3:32b # models with good code generation capabilities recommended

# OrcaRouter (OpenAI-compatible AI gateway)
# Provides adaptive routing, automatic failover, zero-markup inference,
# observability, guardrails, and agent-tool governance behind one endpoint.
# See: https://www.orcarouter.ai
ORCAROUTER_ENABLED=true
ORCAROUTER_API_KEY=#your-orcarouter-api-key
ORCAROUTER_API_BASE=https://api.orcarouter.ai/v1
ORCAROUTER_MODELS=auto # comma separated list of models; use e.g. "auto" or "openai/gpt-4.1-mini"

# Add other LiteLLM-supported providers with PROVIDER_API_KEY, PROVIDER_MODELS, etc.

# -------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ design-docs/
deploy-scripts/
test-data-loader/
scripts/
docs/esrp/*

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Here are milestones that lead to the current design:
- **v0.2** ([Demos](https://github.com/microsoft/data-formulator/releases/tag/0.2)): Large data support with DuckDB integration
- **v0.1.7** ([Demos](https://github.com/microsoft/data-formulator/releases/tag/0.1.7)): Dataset anchoring for cleaner workflows
- **v0.1.6** ([Demo](https://github.com/microsoft/data-formulator/releases/tag/0.1.6)): Multi-table support with automatic joins
- **Model Support**: OpenAI, Azure, Ollama, Anthropic via [LiteLLM](https://github.com/BerriAI/litellm) ([feedback](https://github.com/microsoft/data-formulator/issues/49))
- **Model Support**: OpenAI, Azure, Ollama, Anthropic, [OrcaRouter](https://www.orcarouter.ai) via [LiteLLM](https://github.com/BerriAI/litellm) ([feedback](https://github.com/microsoft/data-formulator/issues/49))
- **Python Package**: Easy local installation ([try it](#get-started))
- **Visualization Challenges**: Test your skills ([challenges](https://github.com/microsoft/data-formulator/issues/53))
- **Data Extraction**: Parse data from images and text ([demo](https://github.com/microsoft/data-formulator/pull/31#issuecomment-2403652717))
Expand Down
37 changes: 0 additions & 37 deletions docs/desktop-portable.md

This file was deleted.

66 changes: 0 additions & 66 deletions loops/model-evaluation/plan.md

This file was deleted.

15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
"private": true,
"resolutions": {
"lodash": "^4.18.1",
"vite": "^7.3.3",
"dompurify": "^3.4.2",
"vite": "^7.3.5",
"dompurify": "^3.4.13",
"postcss": "^8.5.23",
"esbuild": "^0.28.1",
"tmp": "^0.2.6",
"markdown-it": "^14.3.0",
"linkify-it": "^5.0.2",
"undici": "^7.29.0",
Expand Down Expand Up @@ -43,14 +46,14 @@
"canvas": "^3.2.1",
"chart.js": "^4.5.1",
"d3": "^7.3.0",
"dompurify": "^3.4.0",
"echarts": "^6.0.0",
"dompurify": "^3.4.13",
"echarts": "^6.1.0",
"exceljs": "^4.4.0",
"flint-chart": ">=0.5.0",
"html2canvas": "^1.4.1",
"i18next": "^26.0.1",
"i18next-browser-languagedetector": "^8.2.1",
"js-yaml": "^4.1.1",
"js-yaml": "^4.3.1",
"katex": "^0.16.22",
"localforage": "^1.10.0",
"lodash": "^4.18.1",
Expand Down Expand Up @@ -130,7 +133,7 @@
"jsdom": "^29.0.1",
"sass": "^1.102.0",
"typescript-eslint": "^8.65.0",
"vite": "^7.3.3",
"vite": "^7.3.5",
"vitest": "^4.1.0"
}
}
Loading