Skip to content
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

chore: Updatepyproject.toml and README #866

Merged
merged 3 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you're running MemGPT for the first time, you'll see two quickstart options:

Neither of these options require you to have an LLM running on your own machine. If you'd like to run MemGPT with your custom LLM setup (or on OpenAI Azure), select **Other** to proceed to the advanced setup.

### Advanced setup
### Advanced setup
You can reconfigure MemGPT's default settings by running:
```sh
memgpt configure
Expand Down Expand Up @@ -169,11 +169,11 @@ client = MemGPT(
# user message. This may have performance implications, so you
# can otherwise choose when to save explicitly using client.save().
auto_save=True,

# Quickstart will automatically configure MemGPT (without having to run `memgpt configure`
# If you choose 'openai' then you must set the api key (env or in config)
quickstart=QuickstartChoice.memgpt_hosted,

# Allows you to override default config generated by quickstart or `memgpt configure`
config={}
)
Expand Down Expand Up @@ -218,13 +218,3 @@ For issues and feature requests, please [open a GitHub issue](https://github.com

## Datasets
Datasets used in our [paper](https://arxiv.org/abs/2310.08560) can be downloaded at [Hugging Face](https://huggingface.co/MemGPT).

## 🚀 Project Roadmap
- [x] Release MemGPT Discord bot demo (perpetual chatbot)
- [x] Add additional workflows (load SQL/text into MemGPT external context)
- [x] Integration tests
- [x] Integrate with AutoGen ([discussion](https://github.com/cpacker/MemGPT/discussions/65))
- [x] Add official gpt-3.5-turbo support ([discussion](https://github.com/cpacker/MemGPT/discussions/66))
- [x] CLI UI improvements ([issue](https://github.com/cpacker/MemGPT/issues/11))
- [x] Add support for other LLM backends ([issue](https://github.com/cpacker/MemGPT/issues/18), [discussion](https://github.com/cpacker/MemGPT/discussions/67))
- [ ] Release MemGPT family of open models (eg finetuned Mistral) ([discussion](https://github.com/cpacker/MemGPT/discussions/67))
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ packages = [
]
description = "Teaching LLMs memory management for unbounded context"
authors = [
"Charles Packer <[email protected]>",
"Vivian Fang <[email protected]>",
"Sarah Wooders <[email protected]>",
"Shishir Patil <[email protected]>",
"Kevin Lin <[email protected]>"
"MemGPT Team <[email protected]>",
]
license = "Apache License"
readme = "README.md"
Expand Down
Loading