blitzcoder 1.0.1__tar.gz → 1.0.2__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.
- {blitzcoder-1.0.1/src/blitzcoder.egg-info → blitzcoder-1.0.2}/PKG-INFO +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/pyproject.toml +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/setup.py +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder/__init__.py +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder/cli/__init__.py +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder/cli/cli_coder.py +11 -2
- {blitzcoder-1.0.1 → blitzcoder-1.0.2/src/blitzcoder.egg-info}/PKG-INFO +1 -1
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/main/graphapi.py +7 -8
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/LICENSE +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/MANIFEST.in +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/README.md +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/requirements.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/setup.cfg +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder.egg-info/SOURCES.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder.egg-info/dependency_links.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder.egg-info/entry_points.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder.egg-info/requires.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/blitzcoder.egg-info/top_level.txt +0 -0
- {blitzcoder-1.0.1 → blitzcoder-1.0.2}/src/main/__init__.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "blitzcoder"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.2"
|
|
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.
|
|
15
|
+
version="1.0.2",
|
|
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.
|
|
8
|
+
__version__ = "1.0.2"
|
|
9
9
|
__author__ = "BlitzCoder Team"
|
|
10
10
|
__author_email__ = "raghunandanerukulla@gmail.com"
|
|
11
11
|
__description__ = "AI-Powered Development Assistant"
|
|
@@ -6,7 +6,7 @@ A command-line interface for AI-powered code generation, refactoring, and projec
|
|
|
6
6
|
|
|
7
7
|
from .cli_coder import cli, run_agent_with_memory, search_memories_cli
|
|
8
8
|
|
|
9
|
-
__version__ = "1.0.
|
|
9
|
+
__version__ = "1.0.2"
|
|
10
10
|
__author__ = "BlitzCoder Team"
|
|
11
11
|
__description__ = "AI-Powered Development Assistant CLI"
|
|
12
12
|
|
|
@@ -13,7 +13,7 @@ from langgraph.checkpoint.memory import InMemorySaver
|
|
|
13
13
|
from langgraph.prebuilt import ToolNode, tools_condition
|
|
14
14
|
from langgraph.store.base import BaseStore
|
|
15
15
|
|
|
16
|
-
from langchain_google_genai import ChatGoogleGenerativeAI
|
|
16
|
+
from langchain_google_genai import ChatGoogleGenerativeAI,GoogleGenerativeAIEmbeddings
|
|
17
17
|
from langchain_core.runnables import RunnableConfig
|
|
18
18
|
from langchain_core.messages import AIMessage, HumanMessage, SystemMessage
|
|
19
19
|
|
|
@@ -104,7 +104,16 @@ def update_memory(state: AgentState, config: RunnableConfig, *, store: BaseStore
|
|
|
104
104
|
return state
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
semantic_memory_store = InMemoryStore(
|
|
108
|
+
index={
|
|
109
|
+
"embed": GoogleGenerativeAIEmbeddings(
|
|
110
|
+
model="models/embedding-001",
|
|
111
|
+
google_api_key=os.getenv("GOOGLE_API_KEY"),
|
|
112
|
+
),
|
|
113
|
+
"dims": 768, # Google embedding dimension
|
|
114
|
+
"fields": ["memory", "$"], # Fields to embed
|
|
115
|
+
}
|
|
116
|
+
)
|
|
108
117
|
|
|
109
118
|
def retrieve_and_enhance_context(state: AgentState, config: RunnableConfig, *, store: BaseStore):
|
|
110
119
|
user_id = config["configurable"].get("user_id", "default")
|
|
@@ -39,10 +39,10 @@ from langchain_core.runnables import RunnableConfig
|
|
|
39
39
|
from langchain_core.tools import tool
|
|
40
40
|
from dotenv import load_dotenv
|
|
41
41
|
from loguru import logger
|
|
42
|
-
|
|
42
|
+
|
|
43
43
|
|
|
44
44
|
from langchain_groq import ChatGroq
|
|
45
|
-
from langchain_google_genai import ChatGoogleGenerativeAI
|
|
45
|
+
from langchain_google_genai import ChatGoogleGenerativeAI,GoogleGenerativeAIEmbeddings
|
|
46
46
|
|
|
47
47
|
from config.settings import AgentSettings
|
|
48
48
|
|
|
@@ -200,15 +200,14 @@ class AgentState(MessagesState):
|
|
|
200
200
|
documents: list[str]
|
|
201
201
|
|
|
202
202
|
|
|
203
|
-
# Semantic memory store for user memories, using
|
|
203
|
+
# Semantic memory store for user memories, using Google Gemini embeddings
|
|
204
204
|
semantic_memory_store = InMemoryStore(
|
|
205
205
|
index={
|
|
206
|
-
"embed":
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
model="qwen/qwen3-embedding-8b",
|
|
206
|
+
"embed": GoogleGenerativeAIEmbeddings(
|
|
207
|
+
model="models/embedding-001",
|
|
208
|
+
google_api_key=os.getenv("GOOGLE_API_KEY"),
|
|
210
209
|
),
|
|
211
|
-
"dims":
|
|
210
|
+
"dims": 768, # Google embedding dimension
|
|
212
211
|
"fields": ["memory", "$"], # Fields to embed
|
|
213
212
|
}
|
|
214
213
|
)
|
|
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
|