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
Add Meta AI (Llama) as BYOAI provider, fix glass theme message popover
- Add "meta" provider alias (OpenAI-compatible, base URL auto-configured)
- Add Meta AI to Settings dropdown and AI Profiles support
- Fix Llama API empty arguments rejection (pad with first schema property)
- Trim whitespace on profile base URLs to prevent silent failures
- Add Meta AI section to BYOAI docs (models, key format, rate limits)
- Fix glass theme transparency on Messages panel popover
OpenRouter gives you access to 100+ models from multiple providers through a single API key. Great for trying different models without signing up for each provider separately. Many models have free tiers.
109
110
111
+
### Meta AI (Llama)
112
+
113
+
```env
114
+
AI_PROVIDER=meta
115
+
AI_API_KEY=LLM|...
116
+
AI_MODEL=Llama-4-Maverick-17B-128E-Instruct-FP8
117
+
```
118
+
119
+
Meta's Llama API provides direct access to Llama models. Available models:
The API is OpenAI-compatible — no custom base URL needed.
129
+
130
+
::: tip API Key Format
131
+
Meta API keys start with `LLM|` (e.g., `LLM|953656...|8vKG-...`). Get one at [llama.com](https://llama.com/).
132
+
:::
133
+
134
+
::: warning Semantic Search
135
+
Meta's API does not support embeddings. Semantic search is not available when using Meta as your AI provider — Crow falls back to keyword search (FTS5) automatically.
136
+
:::
137
+
110
138
### DashScope Coding Plan (Alibaba Cloud)
111
139
112
140
```env
@@ -146,7 +174,7 @@ This works with vLLM, LM Studio, text-generation-webui, and other OpenAI-compati
var p = document.getElementById('ai-provider').value;
89
90
var urlField = document.getElementById('ai-base-url-field');
90
91
urlField.style.display = (p === 'ollama' || p === 'openrouter' || p === '') ? 'block' : 'none';
91
-
var defaults = {openai:'gpt-4o',anthropic:'claude-sonnet-4-20250514',google:'gemini-2.5-flash',ollama:'llama3.1',openrouter:'openai/gpt-4o'};
92
+
var defaults = {openai:'gpt-4o',anthropic:'claude-sonnet-4-20250514',google:'gemini-2.5-flash',ollama:'llama3.1',openrouter:'openai/gpt-4o',meta:'Llama-4-Maverick-17B-128E-Instruct-FP8'};
0 commit comments