hyperonym / basaran

Basaran is an open-source alternative to the OpenAI text completion API. It provides a compatible streaming API for your Hugging Face Transformers-based text generation models.
MIT License
1.29k stars 80 forks source link

How can I use this with a project using OpenAI's nodejs library? #120

Closed MarkSchmidty closed 1 year ago

MarkSchmidty commented 1 year ago

OpenAI's official node.js library does not support changing the API URL endpoint.

Is there a workaround or other libraries I could be using?

peakji commented 1 year ago

Hi @MarkSchmidty , it seems the nodejs library has a basePath option in Configuration.

MarkSchmidty commented 1 year ago

I didn't realize that. But I think this resolves my issue/question. Thank you!