-
Notifications
You must be signed in to change notification settings - Fork 995
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
Using tabby without creating an account #3236
Comments
If you want to run Tabby without the user management feature, you can disable the entire "webserver feature" by passing the |
I have tried that, but it still does not work. It seems that tabby still expects some authorization token from tabby-agent (I assume). tabby version 0.18.0, started via It always returns an empty response to I've tried with this Python file: # find max element in array
def findMaxElement(arr):
And this is what tabby-agent logs via
|
Based on the error message you received (501 - Not Implemented), it appears that the issue may stem from not initiating Tabby with the --model parameter specified. Can you share the command you used to start Tabby? |
I see. I did not pass the model explicitly, but now I've adjusted the command to start tabby via Now I get a timeout after 30 seconds (and therefore no items in the response). I'm using the CPU version just for testing to implement the inline completions on the client side.
I guess I would need to use the CUDA version of tabby instead. Is the timeout for the CPU version expected? |
Update: I've installed the CUDA version ( {
"isIncomplete": true,
"items": [
{
"insertText": "max = arr[0]\n for i in range(1, len(arr)):\n if arr[i] > max:\n max = arr[i]\n return max",
"range": {
"start": {
"line": 2,
"character": 4
},
"end": {
"line": 2,
"character": 4
}
},
"data": {
"eventId": {
"completionId": "cmpl-8aafcc0e-812f-4cac-bac6-3bb88bc3f6fa",
"choiceIndex": 0
}
}
}
]
} Thanks for your help! |
Please describe the feature you want
Hi, we are looking into integration of tabby with Sublime-Text, but we ran into problems with the server requiring accounts and/or authentication. Is there a way to disable this workflow? We would just like to connect to the server using the Language Server Protocol.
Additional context
sublimelsp/LSP#2520 (comment)
This is the workflow we set up where we ran into this problem.
Please reply with a 👍 if you want this feature.
The text was updated successfully, but these errors were encountered: