-
-
Notifications
You must be signed in to change notification settings - Fork 765
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
Add support for personal agents with custom knowledge bases #928
Merged
sabaimran
merged 29 commits into
features/weave-agent-personality-through-subtasks
from
features/custom-agents
Oct 7, 2024
Merged
Add support for personal agents with custom knowledge bases #928
sabaimran
merged 29 commits into
features/weave-agent-personality-through-subtasks
from
features/custom-agents
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
- update associated API endpoints - this is to improve the overall application health, by obfuscating some information about the internal database - conversation_id type is now implicitly a string, rather than an int - ensure automations are also migrated in place, such that the conversation_ids they're pointing to are now mapped to the new IDs
…-ai/khoj into features/custom-agents
…level, avatar calls
- Fix API with proper calling pattern - Update usage of the safety prompt
- Front-end modal, new agent form
- Create a single method that can be used by both patch and post functions - Add support on the client-side for rendering the edit form when clicking on an agent the user owns
…periments with the overall form layout.
…ithub.com:khoj-ai/khoj into features/custom-agents
sabaimran
changed the title
Support feature to add custom agents with custom knowledge bases
Add support for personal agents with custom knowledge bases
Sep 29, 2024
sabaimran
force-pushed
the
features/custom-agents
branch
from
September 30, 2024 01:06
9958d06
to
1793576
Compare
…ithub.com:khoj-ai/khoj into features/custom-agents
- Expose the functionality to select which tools a given agent has access to. By default, they have all. Can limit both information sources and output modes. - Add new tools to the agent modification form
sabaimran
changed the base branch from
master
to
features/weave-agent-personality-through-subtasks
October 7, 2024 07:08
sabaimran
merged commit Oct 7, 2024
d067983
into
features/weave-agent-personality-through-subtasks
9 checks passed
sabaimran
added a commit
that referenced
this pull request
Oct 7, 2024
…916) 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 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. Custom tool selection for agents in #930 Expose the functionality to select which tools a given agent has access to. By default, they have all. Can limit both information sources and output modes. Add new tools to the agent modification form
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.
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.
In a further iteration, we will support: