v0.3.13
🖥️ MemGPT Dev Portal (alpha build)
Please note the dev portal is in alpha and this is not an official release!
This adds support for viewing the dev portal when the MemGPT service is running. You can view the dev portal on memgpt.localhost
(if running with docker) or localhost:8283
(if running with memgpt server
).
Make sure you install MemGPT with pip install pymemgpt
and run memgpt quickstart [--backend openai]
or memgpt configure
before running the server.
There are two options to deploy the server:
Option 1: Run with docker compose
- Install and run docker
- Clone the repo:
git clone [email protected]:cpacker/MemGPT.git
- Run
docker compose up
- Go to
memgpt.localhost
in the browser to view the developer portal
Option 2: Run with the CLI:
- Run
memgpt server
- Go to
localhost:8283
in the browser to view the developer portal
What's Changed
- fix: hardcode MemGPT version in
config/server_config.yaml
by @sarahwooders in #1292 - feat: Add personal assistant demo code from meetup by @cpacker in #1294
- chore: better database errors by @cpacker in #1299
- ci: update workflows (add
autoflake
andisort
) by @cpacker in #1300 - fix: patch tests by @cpacker in #1304
- fix: patch
embedding_model
null issue in tests by @cpacker in #1305 - feat: update portal by @cpacker in #1306
- fix: refactor
create(..)
call to LLMs to not requireAgentState
by @sarahwooders in #1307 - feat: add testing for LLM + embedding endpoints by @sarahwooders in #1308
- docs: Documentation Typo in Storage URL by @sanegaming in #1298
- feat: code cleanup + make server password print green by @sarahwooders in #1312
- chore: fix README to reflect current project status by @sarahwooders in #1313
Full Changelog: 0.3.12...0.3.13