Skip to content
Discussion options

You must be logged in to vote

Not as a file per preset — they're rows in Studio's SQLite database, and the path is the same shape on all three platforms because Studio doesn't use the OS-specific config directories.

studio/backend/utils/paths/storage_roots.py:

def studio_db_path() -> Path:
    return studio_root() / "studio.db"

and studio_root() resolves in this order:

"""Unsloth install root.

Priority: UNSLOTH_STUDIO_HOME, then STUDIO_HOME alias, then sys.prefix
inference, then legacy ~/.unsloth/studio. UNSLOTH_STUDIO_HOME wins if
both are set (specific signal beats generic alias).
"""

with the final fallback being:

return Path.home() / ".unsloth" / "studio"

So unless you've set an override or are running from a ven…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by pelephant2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants