-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
65 additions
and
40 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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name="octopus_agent", | ||
version="0.3.3", | ||
version="0.3.6", | ||
description="Open source code interpreter agent for LLM", | ||
author="imotai", | ||
author_email="[email protected]", | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name="octopus_chat", | ||
version="0.3.3", | ||
version="0.3.6", | ||
description="the chat client for open source code interpreter octopus", | ||
author="imotai", | ||
author_email="[email protected]", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM imotai/octopus_base:0.3.3 | ||
WORKDIR /agent | ||
VOLUME /agent | ||
ADD start_agent.sh /agent/ | ||
CMD ["bash", "/agent/start_agent.sh"] | ||
ADD start_agent.sh /bin/ | ||
CMD ["bash", "/bin/start_agent.sh"] |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM imotai/octopus_base:0.3.3 | ||
WORKDIR /kernel | ||
VOLUME /kernel | ||
ADD start_kernel.sh /kernel/ | ||
CMD ["bash", "/kernel/start_kernel.sh"] | ||
ADD start_kernel.sh /bin/ | ||
CMD ["bash", "/bin/start_kernel.sh"] |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name="octopus_kernel", | ||
version="0.3.3", | ||
version="0.3.6", | ||
description="Open source code interpreter agent for LLM", | ||
author="imotai", | ||
author_email="[email protected]", | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name="octopus_proto", | ||
version="0.3.3", | ||
version="0.3.6", | ||
description="Open source code interpreter agent for LLM", | ||
author="imotai", | ||
author_email="[email protected]", | ||
|
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
services: | ||
kernel: | ||
image: imotai/octopus_kernel:0.3.4 | ||
image: imotai/octopus_kernel:0.3.5 | ||
ports: | ||
- '9527:9527' | ||
volumes: | ||
- ./app/kernel:/kernel | ||
- ./kernel:/kernel | ||
agent: | ||
image: imotai/octopus_agent:0.3.4 | ||
image: imotai/octopus_agent:0.3.5 | ||
ports: | ||
- '9528:9528' | ||
volumes: | ||
- ./app/agent:/agent | ||
- ./agent:/agent | ||
depends_on: | ||
- kernel |
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