-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
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
}
}, |
This issue is stale because it has been open for 30 days with no activity. |
Are there any plans to publish something like the OpenAI API so it can be easily integrated into any existing project? |
@Deng-Xian-Sheng yes we will be releasing documentation on our stable API release soon. You can see a preview here https://docs.letta.com/api-reference/agents/create |
Letta (MemGPT) 1.0 Stable Release
Update 01/28/25: We expect only minor modifications to be made to our existing API, and will be announcing a 1.0 soon. Please see our updated Python and Typescript SDKs to use this the latest API.
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 end of January 2025:
The text was updated successfully, but these errors were encountered: