graphql-http 2.2.5__tar.gz → 2.2.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {graphql_http-2.2.5 → graphql_http-2.2.6}/PKG-INFO +1 -1
- graphql_http-2.2.6/VERSION +1 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/graphiql/index.html +5 -5
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http.egg-info/PKG-INFO +1 -1
- graphql_http-2.2.5/VERSION +0 -1
- {graphql_http-2.2.5 → graphql_http-2.2.6}/.coverage +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/.github/workflows/pages.yml +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/.github/workflows/python-package.yml +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/.gitignore +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/.gitmodules +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/LICENSE +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/README.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/.gitmodules +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/_index.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/_index.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/api-reference.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/authentication.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/configuration.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/examples.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/getting-started.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/content/docs/testing.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/hugo.toml +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/docs/index.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/example_advanced_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/README.md +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/__init__.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/advanced_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/auth_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/basic_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/examples/graphql_api_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/__init__.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/error.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/helpers.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/introspection.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http/server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http.egg-info/SOURCES.txt +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http.egg-info/dependency_links.txt +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http.egg-info/requires.txt +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/graphql_http.egg-info/top_level.txt +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/pyproject.toml +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/setup.cfg +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/test_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/__init__.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/app.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/app_federation.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/conftest.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_auth.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_cors.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_examples.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_federation.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_graphql_api.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_introspection.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_linting.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/tests/test_server.py +0 -0
- {graphql_http-2.2.5 → graphql_http-2.2.6}/uv.lock +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.2.6
|
|
@@ -3965,7 +3965,7 @@
|
|
|
3965
3965
|
// Call Gemini API
|
|
3966
3966
|
const callGeminiAPI = async (userMessage, currentQuery, currentVariables, currentHeaders, conversationHistory = []) => {
|
|
3967
3967
|
const apiKey = getGeminiApiKey();
|
|
3968
|
-
const model = localStorage.getItem('graphiql:gemini-model') || 'gemini-
|
|
3968
|
+
const model = localStorage.getItem('graphiql:gemini-model') || 'gemini-3-flash-preview';
|
|
3969
3969
|
|
|
3970
3970
|
if (!apiKey) {
|
|
3971
3971
|
throw new Error('API key not configured. Please go to Settings to add your Gemini API key.');
|
|
@@ -4106,12 +4106,12 @@ Examples:
|
|
|
4106
4106
|
}
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
|
-
// Add tools if enabled (Google Search, Code Execution
|
|
4109
|
+
// Add tools if enabled (Google Search, Code Execution)
|
|
4110
|
+
// Note: url_context (Browse) is not supported by all models
|
|
4110
4111
|
if (toolsEnabled) {
|
|
4111
4112
|
requestBody.tools = [
|
|
4112
4113
|
{ google_search: {} },
|
|
4113
|
-
{ code_execution: {} }
|
|
4114
|
-
{ url_context: {} }
|
|
4114
|
+
{ code_execution: {} }
|
|
4115
4115
|
];
|
|
4116
4116
|
}
|
|
4117
4117
|
|
|
@@ -6170,7 +6170,7 @@ Examples:
|
|
|
6170
6170
|
try {
|
|
6171
6171
|
const schemaData = await ensureSchemaLoaded();
|
|
6172
6172
|
const schemaContext = buildSchemaContext(schemaData);
|
|
6173
|
-
const model = localStorage.getItem('graphiql:gemini-model') || 'gemini-
|
|
6173
|
+
const model = localStorage.getItem('graphiql:gemini-model') || 'gemini-3-flash-preview';
|
|
6174
6174
|
|
|
6175
6175
|
const prompt = `Based on this GraphQL schema, suggest 4 short (2-5 words each) natural language queries a user might want to start with. Return ONLY a JSON array of strings, no explanation.
|
|
6176
6176
|
|
graphql_http-2.2.5/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.2.5
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|