-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.2.2 #142
Merged
Merged
0.2.2 #142
Changes from 40 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
d611dc0
tackling more morpheus action items
danXyu e5d7f5c
building out conversations / multiple chats
danXyu 11ca671
support for commands
danXyu 48a0b7b
fix deprecated node modules warnings
danXyu 2794f2c
responsivity, fixing conversations, more styles
danXyu 10de423
Update README.md
lukestokes e5f8386
Update README.md
lukestokes 7b9dce3
improving chat models
danXyu 76ad774
another large refactor, agent core, dex screener, rugcheck, prep for …
danXyu fd74a80
significant changes, redesign workflows, integrate one inch config
danXyu ac9fe0e
halfway finished testing e2e
danXyu f334d98
finally wrapping up comprehensive e2e testing of all agents post Agen…
danXyu f1a58b7
remove linters, useless
danXyu 0252a79
enable all except mor claims
danXyu 075e4fb
small fix to command based agents
danXyu 5dfc7bc
caught crypto data agent, better error handling
danXyu 3ed090d
Merge pull request #127 from danXyu/dxy-more-morpheus-improvements-co…
LachsBagel a73df9f
Merge pull request #131 from lukestokes/patch-3
LachsBagel 3af87a9
Merge pull request #130 from lukestokes/patch-2
LachsBagel 0476e3e
ongoing fontend build debugging
LachsBagel 065c8d9
fix build issues
danXyu d732ee6
Merge pull request #134 from danXyu/dxy-0.2.2-continued-testing
LachsBagel 6a3d434
fix agent selection styling
danXyu 7bf8467
also fix dca agent and tweet sizzler
danXyu c982b05
disable news agent
danXyu 02c7828
Merge pull request #135 from danXyu/dxy-fix-agent-selection-styling
LachsBagel 160428f
fixes to dca agent
danXyu de9ef5a
nit
danXyu 5366e86
Merge pull request #137 from danXyu/dxy-fixes-to-dca-agent
LachsBagel 69b236a
fix step sizes, and for base agent send amount
danXyu 49d2629
Merge pull request #138 from danXyu/dxy-step-size-similar-fix
LachsBagel 58ccf33
better fix for input
danXyu 130143d
nit
danXyu 06b7951
Merge pull request #139 from danXyu/dxy-better-fix-prefix0
LachsBagel 82f46d7
quickfix step size
danXyu 04bc183
Merge pull request #140 from danXyu/dxy-quick-fix-step-size
LachsBagel 9528b5a
check in changes from last night, no luck on swap agent
danXyu 394f0ff
Merge pull request #141 from danXyu/dxy-mor-fixes-rugcheck-token-anal…
LachsBagel ddaec65
Disable swap agent. Incorrect metamask payloads.
LachsBagel 8d96b4e
updated download link for mac for 0.2.2
LachsBagel bc4d304
update docs
LachsBagel 6a86eac
update docs
LachsBagel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -13,6 +13,28 @@ | |
RUN python3 -m pip install --no-cache-dir --upgrade pip && \ | ||
python3 -m pip install --no-cache-dir --upgrade -r requirements.txt | ||
|
||
# Chrome installation for Debian Bullseye | ||
RUN apt-get update && apt-get install -y \ | ||
wget \ | ||
gnupg2 \ | ||
apt-transport-https \ | ||
ca-certificates \ | ||
unzip \ | ||
xvfb \ | ||
libnss3 \ | ||
libxss1 \ | ||
libasound2 \ | ||
libatk-bridge2.0-0 \ | ||
libgtk-3-0 \ | ||
libgbm1 | ||
|
||
# Install ChromiumDriver instead of Chrome | ||
RUN apt-get install -y chromium chromium-driver | ||
Check failure Code scanning / Trivy 'apt-get' missing '--no-install-recommends' High
Artifact: submodules/moragents_dockers/agents/Dockerfile
Type: dockerfile Vulnerability DS029 Severity: HIGH Message: '--no-install-recommends' flag is missed: 'apt-get install -y chromium chromium-driver' Link: DS029 |
||
|
||
# Set environment variables for Chrome | ||
ENV CHROME_BIN=/usr/bin/chromium | ||
ENV CHROMEDRIVER_BIN=/usr/bin/chromedriver | ||
|
||
COPY . . | ||
|
||
# Expose the port your application listens on | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check failure
Code scanning / Trivy
'apt-get' missing '--no-install-recommends' High