-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
💎 Letta 1.0 Stable Release #1533
Comments
sarahwooders
changed the title
MemGPT Stable 1.0 Release
[meta] MemGPT Stable 1.0 Release
Jul 10, 2024
sarahwooders
changed the title
[meta] MemGPT Stable 1.0 Release
MemGPT Stable 1.0 Release
Jul 10, 2024
At present, I find that there is a problem with the generation of the open API. It cannot generate the correct parameters. Therefore, I can only manually modify the open API JSON file. The following is the /admin/users interface that I modified. It does not generate the body parameters for the GET request. "/admin/users": {
"get": {
"tags": [
"admin"
],
"summary": "Get All Users",
"description": "Get a list of all users in the database",
"operationId": "get_all_users_admin_users_get",
"security": [
{
"HTTPBearer": []
}
],
"requestBody": {
"description": "Parameters to filter users.",
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetAllUsersRequest"
}
}
}
},
"GetAllUsersRequest": {
"type": "object",
"properties": {
"cursor": {
"type": "string",
"format": "uuid",
"description": "Cursor to which to start the paginated request."
},
"limit": {
"type": "integer",
"description": "Maximum number of users to retrieve per page."
}
},
"required": [],
"example": {
"cursor": "00000000-0000-0000-0000-000000000000",
"limit": 50
}
}, |
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Letta (MemGPT) 1.0 Stable Release
We are working to release a stable version of MemGPT in a 1.0 release, which will be intended for production use. The release will include:
MetadataStore
) to solve scaleability and connection issues (e.g. Add a consistent pool manager #1488)To view progress on the release, you can check the integration branch.
General Cleanup
Logging
print
andprintd
calls (except for in the CLI)Data Schemas
AgentState
) across CLI, Python Client, and REST API represented with pydantic modelsAuth + Access
Testing
Documentation
Timeline
Planned for mid-October
The text was updated successfully, but these errors were encountered: