We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1866212 commit 8acd524Copy full SHA for 8acd524
manifest.json
@@ -1,7 +1,7 @@
1
{
2
"id": "bks-ai-shell",
3
"name": "AI Shell",
4
- "version": "1.1.1",
+ "version": "1.1.2",
5
"minAppVersion": "5",
6
"description": "Ask AI to analyze your database and generate SQL queries.",
7
"author": {
src/composables/ai.ts
@@ -128,6 +128,7 @@ export function useAI(options: AIOptions) {
128
} else if (providerId.value === "anthropic") {
129
return createAnthropic({
130
apiKey: options.anthropicApiKey,
131
+ headers: { 'anthropic-dangerous-direct-browser-access': 'true' }
132
});
133
} else if (providerId.value === "openai") {
134
return createOpenAI({
0 commit comments