CSAle commited on
Commit
7e01311
1 Parent(s): f475b01

Releasing Demo Application

Browse files
Files changed (5) hide show
  1. Dockerfile +11 -0
  2. README copy.md +208 -0
  3. app.py +80 -0
  4. chainlit.md +3 -0
  5. requirements.txt +5 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ RUN useradd -m -u 1000 user
3
+ USER user
4
+ ENV HOME=/home/user \
5
+ PATH=/home/user/.local/bin:$PATH
6
+ WORKDIR $HOME/app
7
+ COPY --chown=user . $HOME/app
8
+ COPY ./requirements.txt ~/app/requirements.txt
9
+ RUN pip install -r requirements.txt
10
+ COPY . .
11
+ CMD ["chainlit", "run", "app.py", "--port", "7860"]
README copy.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: BeyondChatGPT Demo
3
+ emoji: 📉
4
+ colorFrom: pink
5
+ colorTo: yellow
6
+ sdk: docker
7
+ pinned: false
8
+ ---
9
+
10
+ <p align = "center" draggable=”false” ><img src="https://github.com/AI-Maker-Space/LLM-Dev-101/assets/37101144/d1343317-fa2f-41e1-8af1-1dbb18399719"
11
+ width="200px"
12
+ height="auto"/>
13
+ </p>
14
+
15
+
16
+ ## <h1 align="center" id="heading">:wave: Welcome to Beyond ChatGPT!!</h1>
17
+
18
+ ## Agenda
19
+
20
+ ### Build 🏗️
21
+ Build and containerize your App
22
+
23
+ ### Ship 🚢
24
+ Deploy your App on Hugging Face
25
+
26
+ ### Share 🚀
27
+ - Submit the link to your App for this assignment!
28
+ - Submit the link to a Loom video walkthrough (<5 min) of your Interactive Development Environment (IDE) for LLM Ops and your first LLM application
29
+ - Share 3 lessons learned
30
+ - Share 3 lessons not yet learned
31
+ - Make a social media post about your final application and tag @AIMakerspace
32
+
33
+ Here's a template to get your post started!
34
+
35
+ ```
36
+ 🚀🎉 Exciting News! 🎉🚀
37
+
38
+ 🏗️ Today, I'm thrilled to announce that I've successfully built and shipped my first-ever LLM using the powerful combination of Chainlit, Docker, and the OpenAI API! 🖥️
39
+
40
+ Here are my 3 main takeaways!
41
+ - Takeaway 1
42
+ - Takeaway 2
43
+ - Takeaway 3
44
+
45
+ Check it out 👇
46
+ [LINK TO APP]
47
+
48
+ A big shoutout to the @**AI Makerspace** for all making this possible. Couldn't have done it without the incredible community there. 🤗🙏
49
+
50
+ Looking forward to building with the community! 🙌✨ Here's to many more creations ahead! 🥂🎉
51
+
52
+ Who else is diving into the world of AI? Let's connect! 🌐💡
53
+
54
+ #FirstLLM #Chainlit #Docker #OpenAI #AIMakerspace
55
+ ```
56
+
57
+ ## 🤖 Your First LLM App
58
+
59
+ > If you need an introduction to `git`, or information on how to set up API keys for the tools we'll be using in this repository - check out our [Interactive Dev Environment for LLM Development](https://github.com/AI-Maker-Space/Interactive-Dev-Environment-for-LLM-Development/tree/main) which has everything you'd need to get started in this repository!
60
+
61
+ In this repository, we'll walk you through the steps to create a Large Language Model (LLM) application using Chainlit, then containerize it using Docker, and finally deploy it on Huggingface Spaces.
62
+
63
+ Are you ready? Let's get started!
64
+
65
+ <details>
66
+ <summary>🖥️ Accessing "gpt-3.5-turbo" (ChatGPT) like a developer</summary>
67
+
68
+ 1. Head to [this notebook](https://colab.research.google.com/drive/1mOzbgf4a2SP5qQj33ZxTz2a01-5eXqk2?usp=sharing) and follow along with the instructions!
69
+
70
+ 2. Complete the notebook and try out your own system/assistant messages!
71
+
72
+ That's it! Head to the next step and start building your application!
73
+
74
+ </details>
75
+
76
+
77
+ <details>
78
+ <summary>🏗️ Building Your First LLM App</summary>
79
+
80
+ 1. Clone [this](https://github.com/AI-Maker-Space/Beyond-ChatGPT/tree/main) repo.
81
+
82
+ ``` bash
83
+ git clone https://github.com/AI-Maker-Space/Beyond-ChatGPT.git
84
+ ```
85
+
86
+ 2. Navigate inside this repo
87
+ ``` bash
88
+ cd Beyond-ChatGPT
89
+ ```
90
+
91
+ 3. Install the packages required for this python envirnoment in `requirements.txt`.
92
+ ``` bash
93
+ pip install -r requirements.txt
94
+ ```
95
+
96
+ 4. Open your `.env.sample` file. Replace the `###` in your `.env.sample` file with your OpenAI Key and save the file - rename the `.env.sample` file to `.env`.
97
+ ``` bash
98
+ OPENAI_API_KEY=sk-###
99
+ ```
100
+
101
+ 5. Let's try deploying it locally. Make sure you're in the python environment where you installed Chainlit and OpenAI. Run the app using Chainlit. This may take a minute to run.
102
+ ``` bash
103
+ chainlit run app.py -w
104
+ ```
105
+
106
+ <p align = "center" draggable=”false”>
107
+ <img src="https://i.imgur.com/mlgrl1N.png">
108
+ </p>
109
+
110
+ Great work! Let's see if we can interact with our chatbot.
111
+
112
+ <p align = "center" draggable=”false”>
113
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/854e4435-1dee-438a-9146-7174b39f7c61">
114
+ </p>
115
+
116
+ Awesome! Time to throw it into a docker container and prepare it for shipping!
117
+ </details>
118
+
119
+
120
+
121
+ <details>
122
+ <summary>🐳 Containerizing our App</summary>
123
+
124
+ 1. Let's build the Docker image. We'll tag our image as `llm-app` using the `-t` parameter. The `.` at the end means we want all of the files in our current directory to be added to our image.
125
+
126
+ ``` bash
127
+ docker build -t llm-app .
128
+ ```
129
+ You'll see a number of steps - each of those steps corresponds to an item outlined in our `Dockerfile` and the build process.
130
+
131
+ If you'd like to learn more - check out this resource by Docker: [build](https://docs.docker.com/engine/reference/commandline/build/)
132
+
133
+ 2. Run and test the Docker image locally using the `run` command. The `-p`parameter connects our **host port #** to the left of the `:` to our **container port #** on the right.
134
+
135
+ ``` bash
136
+ docker run -p 7860:7860 llm-app
137
+ ```
138
+
139
+ 3. Visit http://localhost:7860 in your browser to see if the app runs correctly.
140
+
141
+ <p align = "center" draggable=”false”>
142
+ <img src="https://i.imgur.com/mlgrl1N.png">
143
+ </p>
144
+
145
+ Great! Time to ship!
146
+ </details>
147
+
148
+
149
+ <details>
150
+ <summary>🚀 Deploying Your First LLM App</summary>
151
+
152
+ 1. Let's create a new Huggingface Space. Navigate to [Huggingface](https://huggingface.co) and click on your profile picture on the top right. Then click on `New Space`.
153
+
154
+ <p align = "center" draggable=”false”>
155
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/f0656408-28b8-4876-9887-8f0c4b882bae">
156
+ </p>
157
+
158
+ 2. Setup your space as shown below:
159
+
160
+ - Owner: Your username
161
+ - Space Name: `llm-app`
162
+ - License: `Openrail`
163
+ - Select the Space SDK: `Docker`
164
+ - Docker Template: `Blank`
165
+ - Space Hardware: `CPU basic - 2 vCPU - 16 GB - Free`
166
+ - Repo type: `Public`
167
+
168
+ <p align = "center" draggable=”false”>
169
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/8f16afd1-6b46-4d9f-b642-8fefe355c5c9">
170
+ </p>
171
+
172
+ 3. You should see something like this. We're now ready to send our files to our Huggingface Space. After cloning, move your files to this repo and push it along with your docker file. You DO NOT need to create a Dockerfile. Make sure NOT TO push your `.env` file. This should automatically be ignored.
173
+
174
+ <p align = "center" draggable=”false”>
175
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/cbf366e2-7613-4223-932a-72c67a73f9c6">
176
+ </p>
177
+
178
+ 4. After pushing all files, navigate to the settings in the top right to add your OpenAI API key.
179
+
180
+ <p align = "center" draggable=”false”>
181
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/a1123a6f-abdd-4f76-bea4-39acf9928762">
182
+ </p>
183
+
184
+ 5. Scroll down to `Variables and secrets` and click on `New secret` on the top right.
185
+
186
+ <p align = "center" draggable=”false”>
187
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/a8a4a25d-752b-4036-b572-93381370c2db">
188
+ </p>
189
+
190
+ 6. Set the name to `OPENAI_API_KEY` and add your OpenAI key under `Value`. Click save.
191
+
192
+ <p align = "center" draggable=”false”>
193
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/0a897538-1779-48ff-bcb4-486af30f7a14">
194
+ </p>
195
+
196
+ 7. To ensure your key is being used, we recommend you `Restart this Space`.
197
+
198
+ <p align = "center" draggable=”false”>
199
+ <img src="https://github.com/AI-Maker-Space/LLMOps-Dev-101/assets/37101144/fb1d83af-6ebe-4676-8bf5-b6d88f07c583">
200
+ </p>
201
+
202
+ 8. Congratulations! You just deployed your first LLM! 🚀🚀🚀 Get on linkedin and post your results and experience using the provided template! Make sure to tag us at #AIMakerspace !
203
+
204
+ </details>
205
+
206
+ <p></p>
207
+
208
+ ### That's it for now! And so it begins.... :)
app.py ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # You can find this code for Chainlit python streaming here (https://docs.chainlit.io/concepts/streaming/python)
2
+
3
+ # OpenAI Chat completion
4
+ import os
5
+ from openai import AsyncOpenAI # importing openai for API usage
6
+ import chainlit as cl # importing chainlit for our app
7
+ from chainlit.prompt import Prompt, PromptMessage # importing prompt tools
8
+ from chainlit.playground.providers import ChatOpenAI # importing ChatOpenAI tools
9
+ from dotenv import load_dotenv
10
+
11
+ load_dotenv()
12
+
13
+ # ChatOpenAI Templates
14
+ system_template = """You are a helpful assistant who always speaks in a pleasant tone!
15
+ """
16
+
17
+ user_template = """{input}
18
+ Think through your response step by step.
19
+ """
20
+
21
+
22
+ @cl.on_chat_start # marks a function that will be executed at the start of a user session
23
+ async def start_chat():
24
+ settings = {
25
+ "model": "gpt-3.5-turbo",
26
+ "temperature": 0,
27
+ "max_tokens": 500,
28
+ "top_p": 1,
29
+ "frequency_penalty": 0,
30
+ "presence_penalty": 0,
31
+ }
32
+
33
+ cl.user_session.set("settings", settings)
34
+
35
+
36
+ @cl.on_message # marks a function that should be run each time the chatbot receives a message from a user
37
+ async def main(message: cl.Message):
38
+ settings = cl.user_session.get("settings")
39
+
40
+ client = AsyncOpenAI()
41
+
42
+ print(message.content)
43
+
44
+ prompt = Prompt(
45
+ provider=ChatOpenAI.id,
46
+ messages=[
47
+ PromptMessage(
48
+ role="system",
49
+ template=system_template,
50
+ formatted=system_template,
51
+ ),
52
+ PromptMessage(
53
+ role="user",
54
+ template=user_template,
55
+ formatted=user_template.format(input=message.content),
56
+ ),
57
+ ],
58
+ inputs={"input": message.content},
59
+ settings=settings,
60
+ )
61
+
62
+ print([m.to_openai() for m in prompt.messages])
63
+
64
+ msg = cl.Message(content="")
65
+
66
+ # Call OpenAI
67
+ async for stream_resp in await client.chat.completions.create(
68
+ messages=[m.to_openai() for m in prompt.messages], stream=True, **settings
69
+ ):
70
+ token = stream_resp.choices[0].delta.content
71
+ if not token:
72
+ token = ""
73
+ await msg.stream_token(token)
74
+
75
+ # Update the prompt object with the completion
76
+ prompt.completion = msg.content
77
+ msg.prompt = prompt
78
+
79
+ # Send and close the message stream
80
+ await msg.send()
chainlit.md ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Beyond ChatGPT
2
+
3
+ This Chainlit app was created following instructions from [this repository!](https://github.com/AI-Maker-Space/Beyond-ChatGPT)
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ chainlit==0.7.700
2
+ cohere==4.37
3
+ openai==1.3.5
4
+ tiktoken==0.5.1
5
+ python-dotenv==1.0.0