You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restore OpenRouter as free option, fix lint/mypy errors
- Restore OpenRouter documentation as openai_compat backend example
- Fix ruff import sorting in analyzer.py
- Fix ruff format in 4 plugin files
- Fix mypy no-any-return in analyzer.py
- Fix mypy attr-defined for signal.alarm on Windows
> **💡 OpenRouter (Free)**: For users without a paid API key, OpenRouter provides free models. Set `SQLSEED_AI_BACKEND=openai_compat`, `SQLSEED_AI_BASE_URL=https://openrouter.ai/api/v1`, and `SQLSEED_AI_MODEL=<free-model-name>`.
Copy file name to clipboardExpand all lines: plugins/sqlseed-ai/README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
AI-powered data generation plugin for [sqlseed](https://github.com/sunbos/sqlseed).
6
6
7
-
LLM-driven schema analysis, self-correcting config generation, and template pool assistance. Supports multiple backends: Google AI Studio (Gemma 4 Native Function Calling), LM Studio, Ollama, and any OpenAI-compatible API.
7
+
LLM-driven schema analysis, self-correcting config generation, and template pool assistance. Supports multiple backends: Google AI Studio (Gemma 4 Native Function Calling), LM Studio, Ollama, and any OpenAI-compatible API (OpenRouter, OpenAI, DeepSeek, etc.).
8
8
9
9
## Installation
10
10
@@ -54,7 +54,14 @@ When using the `google_ai_studio` backend (default), the `GemmaModel` enum provi
54
54
55
55
1.**Google AI Studio**: Defaults to `gemma-4-26b-it` (recommended balance of quality and speed).
56
56
2.**LM Studio / Ollama**: User must specify a loaded model via `--model` or `SQLSEED_AI_MODEL`.
57
-
3.**OpenAI-compatible**: User must specify both `--model` and `--base-url`.
57
+
3.**OpenAI-compatible** (OpenRouter, DeepSeek, etc.): User must specify both `--model` and `--base-url`.
0 commit comments