-
Notifications
You must be signed in to change notification settings - Fork 835
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
Fix ChatGPT API endpoint #6
Comments
One of the issues here is that since we don't treat any node as a "master" or "worker" (all nodes are equal), the "head" and "tail" nodes are dynamic. However, the prompt needs to be sent to the "head" and the tokens are received by the "tail". We could hack this by breaking the p2p equality assumption, but that would need to be fixed down the line. The better thing is to:
|
Fixed the former: 1d5c28a |
Fixed in f2895cb |
Currently doesn't work - which means the only way to access inference is via peer handles in Python, which isn't very user-friendly for applications to add a new library.
The text was updated successfully, but these errors were encountered: