Issue: LM Studio dependency not documented in Pinokio installation path
Summary:
When installing and running Orpheus-TTS-FastAPI via Pinokio, the script fails silently if lms (LM Studio CLI) is not installed. It leads to token generation failures due to missing LLM backend on localhost:1234.
Error observed:
'null' is not recognized as an internal or external command
Connection error to API at http://127.0.0.1:1234/v1/completions
Cause:
The pinokio.json script uses {{which("lms")}} assuming lms is installed. If not present, it resolves to null, breaking the launch sequence.
Suggested Fixes:
- Add a check or clearer log when
lms is not found
- Update documentation to include:
- LM Studio installation link
- Instruction to enable the Local API server and CORS
- How to verify the endpoint at
http://127.0.0.1:1234
System:
- Windows 10, RTX 4060, Python/Conda via Pinokio
- Fixed by manually installing LM Studio and running server
Thanks for the great project — happy to contribute further!
Issue: LM Studio dependency not documented in Pinokio installation path
Summary:
When installing and running Orpheus-TTS-FastAPI via Pinokio, the script fails silently if
lms(LM Studio CLI) is not installed. It leads to token generation failures due to missing LLM backend onlocalhost:1234.Error observed:
Cause:
The
pinokio.jsonscript uses{{which("lms")}}assuminglmsis installed. If not present, it resolves tonull, breaking the launch sequence.Suggested Fixes:
lmsis not foundhttp://127.0.0.1:1234System:
Thanks for the great project — happy to contribute further!