Vector memory revamp (part 1: refactoring)#4208
Merged
Pwuts merged 62 commits intoSignificant-Gravitas:masterfrom May 25, 2023
Merged
Vector memory revamp (part 1: refactoring)#4208Pwuts merged 62 commits intoSignificant-Gravitas:masterfrom
Pwuts merged 62 commits intoSignificant-Gravitas:masterfrom
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Contributor
|
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
Contributor
|
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
This was referenced May 15, 2023
19 tasks
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
Contributor
|
We committed some changes to this branch, please run before pushing more changes to the remote. |
This comment was marked as duplicate.
This comment was marked as duplicate.
ntindle
approved these changes
May 25, 2023
Member
ntindle
left a comment
There was a problem hiding this comment.
Open an issue for the nits that were closed related to prompting :)
DGdev91
added a commit
to DGdev91/Auto-GPT
that referenced
this pull request
May 25, 2023
5 tasks
This was referenced Jun 7, 2023
Closed
Pwuts
added a commit
that referenced
this pull request
Jun 10, 2023
* Add settings for custom base url and embedding dimension Making the openai base url and embedding dimension configurable, these are useful to integrate AutoGPT with other models, like LLaMA * Update to milvus.py to load the configuration also in the init_collection function * Update radismem.py to get rid of Config() loading * Update local.py to get rid of Config() loading * Correct code format (python black) * Revert DEFAULT_EMBED_DIM name to EMBED_DIM to keep tests valid * Better description for EMBED_DIM setting * Set MockConfig to the type Config in Milvus test * Fix formatting * Update Milvus test, using Config() instead of building a mock config * using the last milvus test code from main * Remove embed_dim , no more needed after #4208 * Add example for OPENAI_BASE_URL --------- Co-authored-by: Nicholas Tindle <nick@ntindle.com> Co-authored-by: Reinier van der Leer <github@pwuts.nl> Co-authored-by: merwanehamadi <merwanehamadi@gmail.com>
This was referenced Jun 11, 2023
Closed
Closed
This was referenced Jul 14, 2023
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
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.
Work in progress on the memory system.
🔭 Primary todo's
Robust and reliable memorization routines for basic content (WIP)
Good memory search/retrieval based on relevance (WIP)
For a given query (e.g. a prompt or question), we need to be able to find the most relevant memories.
Must be implemented separately for each memory backend provider:
RedisMilvus(The other currently implemented providers are not in this list because they may be moved to plugins.)
🛠️ Secondary todo's
autogpt.memorymodule structureMemoryItementity as a uniform interfaceUpdate Redis memory backendUpdate Milvus memory backendautogpt.processing(WIP)text-davinci-003and classic text completions)🔧 Other changes
llm_utils.create_text_completionsllm_utils.@metereddecorator for functions that make API calls to OpenAI