blitzcoder 1.0.3__tar.gz → 1.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: blitzcoder
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: AI-powered development assistant for code generation, refactoring, and project management
5
5
  Home-page: https://github.com/Raghu6798/Blitz_Coder
6
6
  Author: BlitzCoder Team
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "blitzcoder"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "AI-powered development assistant for code generation, refactoring, and project management"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -12,7 +12,7 @@ except Exception:
12
12
 
13
13
  setup(
14
14
  name="blitzcoder",
15
- version="1.0.3",
15
+ version="1.0.4",
16
16
  description="AI-powered development assistant for code generation, refactoring, and project management",
17
17
  long_description=long_description,
18
18
  long_description_content_type="text/markdown",
@@ -5,7 +5,7 @@ A comprehensive AI-powered development assistant that helps with code generation
5
5
  refactoring, project scaffolding, and development tasks.
6
6
  """
7
7
 
8
- __version__ = "1.0.3"
8
+ __version__ = "1.0.4"
9
9
  __author__ = "BlitzCoder Team"
10
10
  __author_email__ = "raghunandanerukulla@gmail.com"
11
11
  __description__ = "AI-Powered Development Assistant"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: blitzcoder
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: AI-powered development assistant for code generation, refactoring, and project management
5
5
  Home-page: https://github.com/Raghu6798/Blitz_Coder
6
6
  Author: BlitzCoder Team
@@ -1174,21 +1174,11 @@ def get_gemini_model():
1174
1174
  max_tokens=100000
1175
1175
  )
1176
1176
 
1177
- CodeAgent = ChatGroq(
1178
- model="qwen-qwq-32b",
1179
- api_key=os.getenv("GROQ_API_KEY"),
1180
- temperature=0.2,
1181
- max_tokens=100000,
1182
- timeout=None,
1183
- max_retries=2,
1184
- )
1177
+
1185
1178
 
1186
1179
  gemini = get_gemini_model()
1187
1180
 
1188
- mistral_small = ChatGroq(
1189
- api_key=os.getenv("GROQ_API_KEY"),
1190
- model="meta-llama/llama-4-maverick-17b-128e-instruct",
1191
- )
1181
+ mistral_small = gemini
1192
1182
 
1193
1183
 
1194
1184
  llm_with_tool = gemini.bind_tools(tools)
File without changes
File without changes
File without changes
File without changes
File without changes