We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. It should be possible to get the MindsDB server version through our SDKs.
Describe the solution you'd like For example:
import mindsdb_sdk server = mindsdb_sdk.connect('http://127.0.0.1:47334') server.version() # should return a version string, e.g. '23.10.1.0'
This will be useful for our benchmarking suite.
The text was updated successfully, but these errors were encountered:
api status
5deb5a3
#85
Would be this option ok?
print(server.status()['mindsdb_version'])
It uses this '/api/status' method and works for local version Cloud doesn't return version at the moment https://cloud.mindsdb.com/api/status
Sorry, something went wrong.
Oh, nice! Thanks, this is useful. Perhaps it should be documented?
Added to docs https://mindsdb.github.io/mindsdb_python_sdk/server.html#mindsdb_sdk.server.Server.status
StpMax
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
It should be possible to get the MindsDB server version through our SDKs.
Describe the solution you'd like
For example:
This will be useful for our benchmarking suite.
The text was updated successfully, but these errors were encountered: