browse-code 0.2.14__tar.gz → 0.2.15__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.
- {browse_code-0.2.14 → browse_code-0.2.15}/PKG-INFO +1 -1
- browse_code-0.2.15/browse_code/__init__.py +1 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/content.js +4 -3
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/PKG-INFO +1 -1
- {browse_code-0.2.14 → browse_code-0.2.15}/setup.py +1 -1
- browse_code-0.2.14/browse_code/__init__.py +0 -1
- {browse_code-0.2.14 → browse_code-0.2.15}/README.md +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/cli.py +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/icon128.png +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/icon16.png +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/icon48.png +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/manifest.json +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/popup.html +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/popup.js +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/extension/spoof.js +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code/server.py +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/SOURCES.txt +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/dependency_links.txt +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/entry_points.txt +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/requires.txt +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/browse_code.egg-info/top_level.txt +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/pyproject.toml +0 -0
- {browse_code-0.2.14 → browse_code-0.2.15}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.15"
|
|
@@ -373,13 +373,14 @@ function trackResponse(initialText) {
|
|
|
373
373
|
});
|
|
374
374
|
|
|
375
375
|
const results = await Promise.all(toolPromises);
|
|
376
|
-
let combinedFeedback = results.join("") + "Instruction: Review the output above. If the task requires more steps, continue. If finished, summarize what was done.";
|
|
377
|
-
|
|
378
376
|
messageCount++;
|
|
377
|
+
let reminder = "";
|
|
379
378
|
if (injectN > 0 && messageCount % injectN === 0) {
|
|
380
|
-
|
|
379
|
+
reminder = `[System Reminder (Context Refresh)]:\n${SYSTEM_PROMPT}\n\n`;
|
|
381
380
|
}
|
|
382
381
|
|
|
382
|
+
let combinedFeedback = reminder + results.join("") + "Instruction: Review the output above. If the task requires more steps, continue. If finished, summarize what was done.";
|
|
383
|
+
|
|
383
384
|
messageQueue.push(combinedFeedback);
|
|
384
385
|
} catch (err) {
|
|
385
386
|
messageQueue.push(`\n[System - Error]: Tool execution failed. Ensure your Python backend is running.`);
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="browse_code",
|
|
5
|
-
version="0.2.
|
|
5
|
+
version="0.2.15",
|
|
6
6
|
description="Turn any AI chatbot into an autonomous coding agent",
|
|
7
7
|
long_description=open("README.md").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.14"
|
|
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
|