QuantumChecker 0.3.7__tar.gz → 0.3.8__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.
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/PKG-INFO +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/powerbi_evaluator.py +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/python_evaluator.py +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/sql_evaluator.py +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/ssis_evaluator.py +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumChecker.egg-info/PKG-INFO +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/setup.py +1 -1
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/__init__.py +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/main.py +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumCheck/prompts.py +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumChecker.egg-info/SOURCES.txt +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumChecker.egg-info/dependency_links.txt +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumChecker.egg-info/requires.txt +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/QuantumChecker.egg-info/top_level.txt +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/README.md +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/setup.cfg +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/tests/test.py +0 -0
- {quantumchecker-0.3.7 → quantumchecker-0.3.8}/tests/test2.py +0 -0
|
@@ -57,7 +57,7 @@ logging.basicConfig(
|
|
|
57
57
|
# Gemini Flash Model
|
|
58
58
|
# ==============================
|
|
59
59
|
class GeminiFlashModel:
|
|
60
|
-
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash"):
|
|
60
|
+
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash-lite"):
|
|
61
61
|
api_key = os.getenv("GEMINI_API_KEY") or api_key
|
|
62
62
|
if not api_key:
|
|
63
63
|
raise ValueError("API key not found in .env file or environment variables.")
|
|
@@ -19,7 +19,7 @@ logger = logging.getLogger(__name__)
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class GeminiFlashModel:
|
|
22
|
-
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash"):
|
|
22
|
+
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash-lite"):
|
|
23
23
|
if not api_key:
|
|
24
24
|
raise ValueError("API key is required.")
|
|
25
25
|
self.api_key = api_key
|
|
@@ -19,7 +19,7 @@ logger = logging.getLogger(__name__)
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class GeminiFlashModel:
|
|
22
|
-
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash"):
|
|
22
|
+
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash-lite"):
|
|
23
23
|
if not api_key:
|
|
24
24
|
raise ValueError("API key is required.")
|
|
25
25
|
self.api_key = api_key
|
|
@@ -15,7 +15,7 @@ logger = logging.getLogger(__name__)
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class GeminiFlashModel:
|
|
18
|
-
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash"):
|
|
18
|
+
def __init__(self, api_key: str, model_name: str = "gemini-2.5-flash-lite"):
|
|
19
19
|
if not api_key:
|
|
20
20
|
raise ValueError("API key is required.")
|
|
21
21
|
self.api_key = api_key
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="QuantumChecker",
|
|
5
|
-
version="0.3.
|
|
5
|
+
version="0.3.8",
|
|
6
6
|
author="Qobiljon",
|
|
7
7
|
author_email="qobiljonkhayrullayev@gmail.com",
|
|
8
8
|
description="A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.",
|
|
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
|