-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Tool-Memory LTM #1007
Tool-Memory LTM #1007
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## dev #1007 +/- ##
==========================================
+ Coverage 59.70% 59.84% +0.14%
==========================================
Files 197 198 +1
Lines 8735 8868 +133
Branches 905 913 +8
==========================================
+ Hits 5215 5307 +92
- Misses 3278 3317 +39
- Partials 242 244 +2
☔ View full report in Codecov by Sentry. |
tools.json
Outdated
@@ -1,4 +1,6 @@ | |||
{ | |||
"tools": { | |||
"DuckDuckGo": "https://github.com/TransformerOptimus/SuperAGI-Tools/tree/main/DuckDuckGo", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert
def escape_symbol(match: re.Match) -> str: | ||
return f"\\{match.group(0)}" | ||
|
||
return escaped_chars_re.sub(escape_symbol, value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add an enter at the eof
docker-compose.yaml
Outdated
@@ -37,8 +37,8 @@ services: | |||
networks: | |||
- super_network | |||
# uncomment to expose redis port to host | |||
# ports: | |||
# - "6379:6379" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment it out
This reverts commit 5a42280.
Description
<Added LTM in Thinking Tool, now we can get the relevant tool response by performing the similarity search in vector Databases. every time when ever agent picks the thinking tool>
Related Issues
Solution and Design
we are saving the task description given by the assistant reply and last tool response along with the metadata in the vector database. After performing the similarity search on the upserted data in vector form. We will get the expected response.
Test Plan
Type of change
Checklist