-
Notifications
You must be signed in to change notification settings - Fork 192
v0.2 #62
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
Merged
Merged
v0.2 #62
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
0c0a0c4
0.2 plans
bboynton97 c36a945
remove wizard steps
bboynton97 7f70f5e
default no wizard
bboynton97 f4b43ae
start template flags
bboynton97 270ebd4
start template scaffolding
bboynton97 90eeef7
Merge branch 'refs/heads/main' into v0.2
bboynton97 3ba9c05
check if poetry add works before adding tool
bboynton97 90c5161
Merge branch 'refs/heads/main' into v0.2
bboynton97 1e95ad2
use openai by default
bboynton97 104c702
started research template
bboynton97 639dcc9
Merge branch 'refs/heads/main' into v0.2
bboynton97 978ca71
finish guide
bboynton97 77cd341
Merge branch 'main' into v0.2
bboynton97 ee261c0
formating
bboynton97 96ede30
Merge branch 'main' into v0.2
bboynton97 a00469e
template
bboynton97 f3391ee
install and remove tools by agent and use AST
bboynton97 a9daf82
handles bundled tools
bboynton97 65e5fcc
generate project from template
bboynton97 b76924d
use template version
bboynton97 6eb4d82
Merge branch 'main' into v0.2
bboynton97 b4ddb31
Merge branch 'main' into v0.2
bboynton97 522ce2d
merge and fix no --agents arg issue
bboynton97 8703144
fix test, help print, flag
bboynton97 8570e1b
Cleanup newlines
tcdent 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 hidden or 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,85 @@ | ||
| # 0.2 Roadmap | ||
|
|
||
| # Concepts | ||
| - Support only CrewAI for now | ||
| - Make the process of starting an agent project as easy as possible | ||
|
|
||
| # How do we get there | ||
| - Understand current agent design | ||
| - What are the use cases? How can they be categorized? | ||
|
|
||
| # CLI | ||
|
|
||
| ## Template Types | ||
|
|
||
| ### Chatbot | ||
| - Conversational | ||
| - Customer Support | ||
|
|
||
| ### Research Agent | ||
| - RAG | ||
| - Search | ||
| - Answers question | ||
|
|
||
| ### Creative Agent | ||
| - Coding Agent | ||
| - Writer Agent | ||
| - Image Gen | ||
|
|
||
| ### Copilot | ||
| - Understand a problem space | ||
| - Support decision-making | ||
| - Predict next steps | ||
|
|
||
| ## Templates | ||
| Are the templates part of cookiecutter, then structure is generated using the code-gen scripts? | ||
| Or do we manage a collection of independent cookiecutter templates. | ||
|
|
||
| The options: | ||
|
|
||
| ### Codegen | ||
| This strategy involves using the existing and new codegen scripts to take the base project template and systematically | ||
| build off of it. | ||
|
|
||
| This would require a templating structure that can handle complex agent designs. | ||
|
|
||
| Pros: | ||
| - More easily extensible | ||
| - Helps prevent some templates lagging behind in updates | ||
|
|
||
| Cons: | ||
| - More complex design. Requires more work on codegen and is a more difficult pattern to understand | ||
| - Contributions will be more challenging | ||
| - There may be some templates that this design may not account for | ||
|
|
||
| ### Cookiecutter | ||
| With this strategy, every template would be its own Cookiecutter template. | ||
|
|
||
| Pros: | ||
| - Much simpler to understand | ||
| - No bounds on complexity or variation between templates | ||
|
|
||
| Cons: | ||
| - Tech debt will easily grow | ||
| - Every update will require a change to every single template | ||
| - Requires robust processes for keeping every template updated | ||
|
|
||
| ## Decision | ||
| We'll move forward with the codegen method unless other information comes to light. | ||
|
|
||
|
|
||
| ### `agentstack i <project_name>` | ||
| - Flags | ||
| - `--in-place` | ||
| - dont place into a subdirectory | ||
| - `--template <template_name>` | ||
| - generate the project according to a template | ||
| - can also consume a url | ||
|
|
||
| ### `agentstack tools` | ||
| - Stays the same | ||
|
|
||
| ### `agentstack generate` | ||
| - `agent` | ||
| - `--template <agent_name>` | ||
| - | ||
This file contains hidden or 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 hidden or 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 hidden or 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,4 +1,4 @@ | ||
| from .agent_generation import generate_agent | ||
| from .task_generation import generate_task | ||
| from .agent_generation import generate_agent, get_agent_names | ||
| from .task_generation import generate_task, get_task_names | ||
| from .tool_generation import add_tool, remove_tool | ||
| from .files import ConfigFile, EnvFile, CONFIG_FILENAME |
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.