-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added logging and error handling to the NEAR Swarm CLI. - Introduced dynamic strategy import functionality in the CLI. - Enhanced the .gitignore to exclude log files. - Updated pyproject.toml to include new configurations for type checking and LLM integration. - Refined README.md to clarify agent capabilities and external connections. - Improved market data management with new API integrations and caching mechanisms. - Removed outdated example strategies and test files to streamline the project. - Updated requirements.txt to reflect new dependencies and versions.
- Loading branch information
1 parent
5a4049e
commit 06a3259
Showing
31 changed files
with
1,619 additions
and
2,398 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ eggs/ | |
.eggs/ | ||
lib/ | ||
lib64/ | ||
logs/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Development dependencies | ||
pylint>=2.8.0 | ||
black>=21.5b2 | ||
isort>=5.9.0 | ||
mypy>=0.910 | ||
pyright>=0.0.13 | ||
types-aiohttp>=3.8.0 |
Oops, something went wrong.