-
Notifications
You must be signed in to change notification settings - Fork 36
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
Issue/#41/add dev chat server instructions #45
Issue/#41/add dev chat server instructions #45
Conversation
55a6fb2
to
37f3d72
Compare
server/Dockerfile
Outdated
@@ -0,0 +1,21 @@ | |||
FROM python:3.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mind changing the file name to Containerfile
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
docs/development.md
Outdated
|
||
After you use the `ilab serve` command you should have, by default, a chat server instance running on port 8000. | ||
|
||
### 2) Using docker |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mind changing to Podman because of their Docker desktop licensing we are using Podman. Ty!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Good stuff, tyvm! Just swap from Docker to Podman because of the Docker Desktop licensing not being free anymore. Ty! |
Signed-off-by: Ash Evans <[email protected]>
…ev environment Signed-off-by: Ash Evans <[email protected]>
…uctions from docker to podman Signed-off-by: Ash Evans <[email protected]>
19dd02e
to
b452576
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Adding a description for devs to setup a local model chat server. Two approaches have been provided:
Local setup of the ilab cli environment and spinning server up. We link users to the documentation for this.
Provide a docker image that can be pulled from dockerhub and used very easily. The issue with this approach is that the inference speed is very slow as Docker containers can't use mac GPUs at the moment.
Feedback very welcome on this one. Cheers!