-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Updated agents-api/agents_api/activities/__i (#178)
Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c959ea4
commit 3365fa1
Showing
1 changed file
with
14 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
""" | ||
The `activities` module within the agents-api package is designed to facilitate various activities related to agent interactions. This includes handling memory management, generating insights from dialogues, summarizing relationships, and more. Each file within the module offers specific functionality: | ||
- `co_density.py`: Conducts cognitive density analysis to generate concise, entity-dense summaries. | ||
- `demo.py`: Provides a simple demonstration of defining an activity with Temporal. | ||
- `dialog_insights.py`: Extracts insights from dialogues, identifying details that participants might find interesting. | ||
- `mem_mgmt.py`: Manages memory by updating and incorporating new personality information from dialogues. | ||
- `mem_rating.py`: Rates memories based on their poignancy and importance. | ||
- `relationship_summary.py`: Summarizes the relationship between individuals based on provided statements. | ||
- `salient_questions.py`: Identifies salient questions from a set of statements. | ||
- `summarization.py`: Summarizes dialogues and updates memory based on the conversation context. | ||
This module plays a crucial role in enhancing the capabilities of agents by providing them with the tools to understand and process information more effectively. | ||
""" |