-
-
Notifications
You must be signed in to change notification settings - Fork 728
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
Include agent personality through subtasks and support custom agents #916
Merged
sabaimran
merged 16 commits into
master
from
features/weave-agent-personality-through-subtasks
Oct 7, 2024
Merged
Include agent personality through subtasks and support custom agents #916
sabaimran
merged 16 commits into
master
from
features/weave-agent-personality-through-subtasks
Oct 7, 2024
Conversation
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
…t of each subtasks, rather than just the final response - This is particularly helpful as you would expect the agent to influence certain attributes (e.g., online searches, image generation)
…agent-personality-through-subtasks
…espective chat model
…agent-personality-through-subtasks
…agent-personality-through-subtasks
…agent-personality-through-subtasks
…agent-personality-through-subtasks
…agent-personality-through-subtasks
…agent-personality-through-subtasks
Agents are useful insofar as you can personalize them to fulfill specific subtasks you need to accomplish. In this PR, we add support for using custom agents that can be configured with a custom system prompt (aka persona) and knowledge base (from your own indexed documents). Once created, private agents can be accessible only to the creator, and protected agents can be accessible via a direct link.
…agent-personality-through-subtasks
…ithub.com:khoj-ai/khoj into features/weave-agent-personality-through-subtasks
sabaimran
changed the title
Weave agent personality through subtasks
Weave agent personality through subtasks and support custom agents
Oct 7, 2024
sabaimran
changed the title
Weave agent personality through subtasks and support custom agents
Include agent personality through subtasks and support custom agents
Oct 7, 2024
sabaimran
deleted the
features/weave-agent-personality-through-subtasks
branch
October 7, 2024 07:21
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Currently, the personality of the agent is only included in the final response that it returns to the user. Historically, this was because models were quite bad at navigating the additional context of personality, and there was a bias towards having more control over certain operations (e.g., tool selection, question extraction).
Going forward, it should be more approachable to have prompts included in the sub tasks that Khoj runs in order to response to a given query. Make this possible in this PR. This also sets us up for agent creation becoming available soon.
Create custom agents in #928
Custom tool selection for agents in #930