-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Snapcraft package for ubuntu local agent
- Loading branch information
1 parent
a3fd8b9
commit f256a60
Showing
14 changed files
with
70 additions
and
2 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
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,3 +1,27 @@ | ||
# Agentsmith Runtime | ||
|
||
This is a runtime that can be deployed anywhere and communicates with the orchestrator to process requests. | ||
This is a runtime that can be deployed anywhere and communicates with the orchestrator to process requests. | ||
|
||
# Supported | ||
|
||
* Simple | ||
* Metal | ||
* GCP | ||
* AWS | ||
|
||
## Simple | ||
|
||
Simple is meant for testing purposes. It is run in anywhere anytime. | ||
|
||
## Metal | ||
|
||
Metal runtime works with the agents running on a host. This can be used to run | ||
your AI team in containers, on VM's or bare metal. | ||
|
||
## GCP | ||
|
||
GCP runtime uses GCP to run your AI teams. The underlying technology is Cloudrun and Cloud Functions. | ||
|
||
## AWS | ||
|
||
TBD |
Empty file.
Empty file.
Empty file.
Empty file.
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,9 @@ | ||
[package] | ||
name = "agentsmith-worker" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
strum_macros = "0.26.2" |
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,3 @@ | ||
# Worker | ||
|
||
The worker is an agent that runs in an environment and monitors your agentsmith environment. |
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,6 @@ | ||
pub mod repository; | ||
|
||
|
||
fn main() { | ||
println!("Hello, world!"); | ||
} |
4 changes: 4 additions & 0 deletions
4
agentsmith-worker/src/prompts/software_orchestrator/initial.prompt.jinja
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,4 @@ | ||
{% include "software_orchestrator/system.prompt.jinja" %} | ||
|
||
Software request: | ||
{{ instructions }} |
2 changes: 2 additions & 0 deletions
2
agentsmith-worker/src/prompts/software_orchestrator/system.prompt.jinja
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,2 @@ | ||
You are a world class tech lead. | ||
You can orchestrate this engineering effort required to deliver on given instructions. |
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 @@ | ||
pub mod prompt_repository; |
Empty file.
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