Spaces:
Sleeping
Sleeping
Commit Β·
2d71cfe
1
Parent(s): 5f68def
Add initial application
Browse files- .chainlit/config.toml +118 -0
- .chainlit/translations/en-US.json +231 -0
- app.py +107 -0
- chainlit.md +14 -0
- requirements.txt +7 -0
- retriever.py +38 -0
.chainlit/config.toml
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
# Whether to enable telemetry (default: true). No personal data is collected.
|
| 3 |
+
enable_telemetry = true
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
# List of environment variables to be provided by each user to use the app.
|
| 7 |
+
user_env = []
|
| 8 |
+
|
| 9 |
+
# Duration (in seconds) during which the session is saved when the connection is lost
|
| 10 |
+
session_timeout = 3600
|
| 11 |
+
|
| 12 |
+
# Enable third parties caching (e.g LangChain cache)
|
| 13 |
+
cache = false
|
| 14 |
+
|
| 15 |
+
# Authorized origins
|
| 16 |
+
allow_origins = ["*"]
|
| 17 |
+
|
| 18 |
+
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317)
|
| 19 |
+
# follow_symlink = false
|
| 20 |
+
|
| 21 |
+
[features]
|
| 22 |
+
# Show the prompt playground
|
| 23 |
+
prompt_playground = true
|
| 24 |
+
|
| 25 |
+
# Process and display HTML in messages. This can be a security risk (see https://stackoverflow.com/questions/19603097/why-is-it-dangerous-to-render-user-generated-html-or-javascript)
|
| 26 |
+
unsafe_allow_html = false
|
| 27 |
+
|
| 28 |
+
# Process and display mathematical expressions. This can clash with "$" characters in messages.
|
| 29 |
+
latex = false
|
| 30 |
+
|
| 31 |
+
# Automatically tag threads with the current chat profile (if a chat profile is used)
|
| 32 |
+
auto_tag_thread = true
|
| 33 |
+
|
| 34 |
+
# Authorize users to spontaneously upload files with messages
|
| 35 |
+
[features.spontaneous_file_upload]
|
| 36 |
+
enabled = true
|
| 37 |
+
accept = ["*/*"]
|
| 38 |
+
max_files = 20
|
| 39 |
+
max_size_mb = 500
|
| 40 |
+
|
| 41 |
+
[features.audio]
|
| 42 |
+
# Threshold for audio recording
|
| 43 |
+
min_decibels = -45
|
| 44 |
+
# Delay for the user to start speaking in MS
|
| 45 |
+
initial_silence_timeout = 3000
|
| 46 |
+
# Delay for the user to continue speaking in MS. If the user stops speaking for this duration, the recording will stop.
|
| 47 |
+
silence_timeout = 1500
|
| 48 |
+
# Above this duration (MS), the recording will forcefully stop.
|
| 49 |
+
max_duration = 15000
|
| 50 |
+
# Duration of the audio chunks in MS
|
| 51 |
+
chunk_duration = 1000
|
| 52 |
+
# Sample rate of the audio
|
| 53 |
+
sample_rate = 44100
|
| 54 |
+
|
| 55 |
+
[UI]
|
| 56 |
+
# Name of the app and chatbot.
|
| 57 |
+
name = "Chatbot"
|
| 58 |
+
|
| 59 |
+
# Show the readme while the thread is empty.
|
| 60 |
+
show_readme_as_default = true
|
| 61 |
+
|
| 62 |
+
# Description of the app and chatbot. This is used for HTML tags.
|
| 63 |
+
# description = ""
|
| 64 |
+
|
| 65 |
+
# Large size content are by default collapsed for a cleaner ui
|
| 66 |
+
default_collapse_content = true
|
| 67 |
+
|
| 68 |
+
# The default value for the expand messages settings.
|
| 69 |
+
default_expand_messages = false
|
| 70 |
+
|
| 71 |
+
# Hide the chain of thought details from the user in the UI.
|
| 72 |
+
hide_cot = false
|
| 73 |
+
|
| 74 |
+
# Link to your github repo. This will add a github button in the UI's header.
|
| 75 |
+
# github = ""
|
| 76 |
+
|
| 77 |
+
# Specify a CSS file that can be used to customize the user interface.
|
| 78 |
+
# The CSS file can be served from the public directory or via an external link.
|
| 79 |
+
# custom_css = "/public/test.css"
|
| 80 |
+
|
| 81 |
+
# Specify a Javascript file that can be used to customize the user interface.
|
| 82 |
+
# The Javascript file can be served from the public directory.
|
| 83 |
+
# custom_js = "/public/test.js"
|
| 84 |
+
|
| 85 |
+
# Specify a custom font url.
|
| 86 |
+
# custom_font = "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
|
| 87 |
+
|
| 88 |
+
# Specify a custom build directory for the frontend.
|
| 89 |
+
# This can be used to customize the frontend code.
|
| 90 |
+
# Be careful: If this is a relative path, it should not start with a slash.
|
| 91 |
+
# custom_build = "./public/build"
|
| 92 |
+
|
| 93 |
+
[UI.theme]
|
| 94 |
+
#layout = "wide"
|
| 95 |
+
#font_family = "Inter, sans-serif"
|
| 96 |
+
# Override default MUI light theme. (Check theme.ts)
|
| 97 |
+
[UI.theme.light]
|
| 98 |
+
#background = "#FAFAFA"
|
| 99 |
+
#paper = "#FFFFFF"
|
| 100 |
+
|
| 101 |
+
[UI.theme.light.primary]
|
| 102 |
+
#main = "#F80061"
|
| 103 |
+
#dark = "#980039"
|
| 104 |
+
#light = "#FFE7EB"
|
| 105 |
+
|
| 106 |
+
# Override default MUI dark theme. (Check theme.ts)
|
| 107 |
+
[UI.theme.dark]
|
| 108 |
+
#background = "#FAFAFA"
|
| 109 |
+
#paper = "#FFFFFF"
|
| 110 |
+
|
| 111 |
+
[UI.theme.dark.primary]
|
| 112 |
+
#main = "#F80061"
|
| 113 |
+
#dark = "#980039"
|
| 114 |
+
#light = "#FFE7EB"
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
[meta]
|
| 118 |
+
generated_by = "1.1.101"
|
.chainlit/translations/en-US.json
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"components": {
|
| 3 |
+
"atoms": {
|
| 4 |
+
"buttons": {
|
| 5 |
+
"userButton": {
|
| 6 |
+
"menu": {
|
| 7 |
+
"settings": "Settings",
|
| 8 |
+
"settingsKey": "S",
|
| 9 |
+
"APIKeys": "API Keys",
|
| 10 |
+
"logout": "Logout"
|
| 11 |
+
}
|
| 12 |
+
}
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
"molecules": {
|
| 16 |
+
"newChatButton": {
|
| 17 |
+
"newChat": "New Chat"
|
| 18 |
+
},
|
| 19 |
+
"tasklist": {
|
| 20 |
+
"TaskList": {
|
| 21 |
+
"title": "\ud83d\uddd2\ufe0f Task List",
|
| 22 |
+
"loading": "Loading...",
|
| 23 |
+
"error": "An error occured"
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
"attachments": {
|
| 27 |
+
"cancelUpload": "Cancel upload",
|
| 28 |
+
"removeAttachment": "Remove attachment"
|
| 29 |
+
},
|
| 30 |
+
"newChatDialog": {
|
| 31 |
+
"createNewChat": "Create new chat?",
|
| 32 |
+
"clearChat": "This will clear the current messages and start a new chat.",
|
| 33 |
+
"cancel": "Cancel",
|
| 34 |
+
"confirm": "Confirm"
|
| 35 |
+
},
|
| 36 |
+
"settingsModal": {
|
| 37 |
+
"settings": "Settings",
|
| 38 |
+
"expandMessages": "Expand Messages",
|
| 39 |
+
"hideChainOfThought": "Hide Chain of Thought",
|
| 40 |
+
"darkMode": "Dark Mode"
|
| 41 |
+
},
|
| 42 |
+
"detailsButton": {
|
| 43 |
+
"using": "Using",
|
| 44 |
+
"running": "Running",
|
| 45 |
+
"took_one": "Took {{count}} step",
|
| 46 |
+
"took_other": "Took {{count}} steps"
|
| 47 |
+
},
|
| 48 |
+
"auth": {
|
| 49 |
+
"authLogin": {
|
| 50 |
+
"title": "Login to access the app.",
|
| 51 |
+
"form": {
|
| 52 |
+
"email": "Email address",
|
| 53 |
+
"password": "Password",
|
| 54 |
+
"noAccount": "Don't have an account?",
|
| 55 |
+
"alreadyHaveAccount": "Already have an account?",
|
| 56 |
+
"signup": "Sign Up",
|
| 57 |
+
"signin": "Sign In",
|
| 58 |
+
"or": "OR",
|
| 59 |
+
"continue": "Continue",
|
| 60 |
+
"forgotPassword": "Forgot password?",
|
| 61 |
+
"passwordMustContain": "Your password must contain:",
|
| 62 |
+
"emailRequired": "email is a required field",
|
| 63 |
+
"passwordRequired": "password is a required field"
|
| 64 |
+
},
|
| 65 |
+
"error": {
|
| 66 |
+
"default": "Unable to sign in.",
|
| 67 |
+
"signin": "Try signing in with a different account.",
|
| 68 |
+
"oauthsignin": "Try signing in with a different account.",
|
| 69 |
+
"redirect_uri_mismatch": "The redirect URI is not matching the oauth app configuration.",
|
| 70 |
+
"oauthcallbackerror": "Try signing in with a different account.",
|
| 71 |
+
"oauthcreateaccount": "Try signing in with a different account.",
|
| 72 |
+
"emailcreateaccount": "Try signing in with a different account.",
|
| 73 |
+
"callback": "Try signing in with a different account.",
|
| 74 |
+
"oauthaccountnotlinked": "To confirm your identity, sign in with the same account you used originally.",
|
| 75 |
+
"emailsignin": "The e-mail could not be sent.",
|
| 76 |
+
"emailverify": "Please verify your email, a new email has been sent.",
|
| 77 |
+
"credentialssignin": "Sign in failed. Check the details you provided are correct.",
|
| 78 |
+
"sessionrequired": "Please sign in to access this page."
|
| 79 |
+
}
|
| 80 |
+
},
|
| 81 |
+
"authVerifyEmail": {
|
| 82 |
+
"almostThere": "You're almost there! We've sent an email to ",
|
| 83 |
+
"verifyEmailLink": "Please click on the link in that email to complete your signup.",
|
| 84 |
+
"didNotReceive": "Can't find the email?",
|
| 85 |
+
"resendEmail": "Resend email",
|
| 86 |
+
"goBack": "Go Back",
|
| 87 |
+
"emailSent": "Email sent successfully.",
|
| 88 |
+
"verifyEmail": "Verify your email address"
|
| 89 |
+
},
|
| 90 |
+
"providerButton": {
|
| 91 |
+
"continue": "Continue with {{provider}}",
|
| 92 |
+
"signup": "Sign up with {{provider}}"
|
| 93 |
+
},
|
| 94 |
+
"authResetPassword": {
|
| 95 |
+
"newPasswordRequired": "New password is a required field",
|
| 96 |
+
"passwordsMustMatch": "Passwords must match",
|
| 97 |
+
"confirmPasswordRequired": "Confirm password is a required field",
|
| 98 |
+
"newPassword": "New password",
|
| 99 |
+
"confirmPassword": "Confirm password",
|
| 100 |
+
"resetPassword": "Reset Password"
|
| 101 |
+
},
|
| 102 |
+
"authForgotPassword": {
|
| 103 |
+
"email": "Email address",
|
| 104 |
+
"emailRequired": "email is a required field",
|
| 105 |
+
"emailSent": "Please check the email address {{email}} for instructions to reset your password.",
|
| 106 |
+
"enterEmail": "Enter your email address and we will send you instructions to reset your password.",
|
| 107 |
+
"resendEmail": "Resend email",
|
| 108 |
+
"continue": "Continue",
|
| 109 |
+
"goBack": "Go Back"
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
},
|
| 113 |
+
"organisms": {
|
| 114 |
+
"chat": {
|
| 115 |
+
"history": {
|
| 116 |
+
"index": {
|
| 117 |
+
"showHistory": "Show history",
|
| 118 |
+
"lastInputs": "Last Inputs",
|
| 119 |
+
"noInputs": "Such empty...",
|
| 120 |
+
"loading": "Loading..."
|
| 121 |
+
}
|
| 122 |
+
},
|
| 123 |
+
"inputBox": {
|
| 124 |
+
"input": {
|
| 125 |
+
"placeholder": "Type your message here..."
|
| 126 |
+
},
|
| 127 |
+
"speechButton": {
|
| 128 |
+
"start": "Start recording",
|
| 129 |
+
"stop": "Stop recording"
|
| 130 |
+
},
|
| 131 |
+
"SubmitButton": {
|
| 132 |
+
"sendMessage": "Send message",
|
| 133 |
+
"stopTask": "Stop Task"
|
| 134 |
+
},
|
| 135 |
+
"UploadButton": {
|
| 136 |
+
"attachFiles": "Attach files"
|
| 137 |
+
},
|
| 138 |
+
"waterMark": {
|
| 139 |
+
"text": "Built with"
|
| 140 |
+
}
|
| 141 |
+
},
|
| 142 |
+
"Messages": {
|
| 143 |
+
"index": {
|
| 144 |
+
"running": "Running",
|
| 145 |
+
"executedSuccessfully": "executed successfully",
|
| 146 |
+
"failed": "failed",
|
| 147 |
+
"feedbackUpdated": "Feedback updated",
|
| 148 |
+
"updating": "Updating"
|
| 149 |
+
}
|
| 150 |
+
},
|
| 151 |
+
"dropScreen": {
|
| 152 |
+
"dropYourFilesHere": "Drop your files here"
|
| 153 |
+
},
|
| 154 |
+
"index": {
|
| 155 |
+
"failedToUpload": "Failed to upload",
|
| 156 |
+
"cancelledUploadOf": "Cancelled upload of",
|
| 157 |
+
"couldNotReachServer": "Could not reach the server",
|
| 158 |
+
"continuingChat": "Continuing previous chat"
|
| 159 |
+
},
|
| 160 |
+
"settings": {
|
| 161 |
+
"settingsPanel": "Settings panel",
|
| 162 |
+
"reset": "Reset",
|
| 163 |
+
"cancel": "Cancel",
|
| 164 |
+
"confirm": "Confirm"
|
| 165 |
+
}
|
| 166 |
+
},
|
| 167 |
+
"threadHistory": {
|
| 168 |
+
"sidebar": {
|
| 169 |
+
"filters": {
|
| 170 |
+
"FeedbackSelect": {
|
| 171 |
+
"feedbackAll": "Feedback: All",
|
| 172 |
+
"feedbackPositive": "Feedback: Positive",
|
| 173 |
+
"feedbackNegative": "Feedback: Negative"
|
| 174 |
+
},
|
| 175 |
+
"SearchBar": {
|
| 176 |
+
"search": "Search"
|
| 177 |
+
}
|
| 178 |
+
},
|
| 179 |
+
"DeleteThreadButton": {
|
| 180 |
+
"confirmMessage": "This will delete the thread as well as it's messages and elements.",
|
| 181 |
+
"cancel": "Cancel",
|
| 182 |
+
"confirm": "Confirm",
|
| 183 |
+
"deletingChat": "Deleting chat",
|
| 184 |
+
"chatDeleted": "Chat deleted"
|
| 185 |
+
},
|
| 186 |
+
"index": {
|
| 187 |
+
"pastChats": "Past Chats"
|
| 188 |
+
},
|
| 189 |
+
"ThreadList": {
|
| 190 |
+
"empty": "Empty...",
|
| 191 |
+
"today": "Today",
|
| 192 |
+
"yesterday": "Yesterday",
|
| 193 |
+
"previous7days": "Previous 7 days",
|
| 194 |
+
"previous30days": "Previous 30 days"
|
| 195 |
+
},
|
| 196 |
+
"TriggerButton": {
|
| 197 |
+
"closeSidebar": "Close sidebar",
|
| 198 |
+
"openSidebar": "Open sidebar"
|
| 199 |
+
}
|
| 200 |
+
},
|
| 201 |
+
"Thread": {
|
| 202 |
+
"backToChat": "Go back to chat",
|
| 203 |
+
"chatCreatedOn": "This chat was created on"
|
| 204 |
+
}
|
| 205 |
+
},
|
| 206 |
+
"header": {
|
| 207 |
+
"chat": "Chat",
|
| 208 |
+
"readme": "Readme"
|
| 209 |
+
}
|
| 210 |
+
}
|
| 211 |
+
},
|
| 212 |
+
"hooks": {
|
| 213 |
+
"useLLMProviders": {
|
| 214 |
+
"failedToFetchProviders": "Failed to fetch providers:"
|
| 215 |
+
}
|
| 216 |
+
},
|
| 217 |
+
"pages": {
|
| 218 |
+
"Design": {},
|
| 219 |
+
"Env": {
|
| 220 |
+
"savedSuccessfully": "Saved successfully",
|
| 221 |
+
"requiredApiKeys": "Required API Keys",
|
| 222 |
+
"requiredApiKeysInfo": "To use this app, the following API keys are required. The keys are stored on your device's local storage."
|
| 223 |
+
},
|
| 224 |
+
"Page": {
|
| 225 |
+
"notPartOfProject": "You are not part of this project."
|
| 226 |
+
},
|
| 227 |
+
"ResumeButton": {
|
| 228 |
+
"resumeChat": "Resume Chat"
|
| 229 |
+
}
|
| 230 |
+
}
|
| 231 |
+
}
|
app.py
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import json
|
| 2 |
+
from langchain_openai import ChatOpenAI
|
| 3 |
+
from langchain.prompts import ChatPromptTemplate, MessagesPlaceholder
|
| 4 |
+
from langchain.schema.runnable import Runnable
|
| 5 |
+
from langchain.schema.runnable.config import RunnableConfig
|
| 6 |
+
|
| 7 |
+
from langchain.memory import ChatMessageHistory
|
| 8 |
+
from langchain_core.chat_history import BaseChatMessageHistory
|
| 9 |
+
from langchain_core.runnables.history import RunnableWithMessageHistory
|
| 10 |
+
|
| 11 |
+
from langchain.chains import create_history_aware_retriever, create_retrieval_chain
|
| 12 |
+
from langchain.chains.combine_documents import create_stuff_documents_chain
|
| 13 |
+
|
| 14 |
+
import chainlit as cl
|
| 15 |
+
from retriever import fetch_retriever_or_load_local_retriever
|
| 16 |
+
|
| 17 |
+
# to run locally use: chainlit run app.py -w
|
| 18 |
+
# see https://python.langchain.com/v0.1/assets/images/conversational_retrieval_chain-5c7a96abe29e582bc575a0a0d63f86b0.png for architecture diagram
|
| 19 |
+
|
| 20 |
+
llm = ChatOpenAI(model="gpt-4o", temperature=0, streaming=True)
|
| 21 |
+
|
| 22 |
+
# load local FAISS retriever with preloaded embeddings
|
| 23 |
+
retriever = fetch_retriever_or_load_local_retriever()
|
| 24 |
+
|
| 25 |
+
### Contextualize question ###
|
| 26 |
+
contextualize_q_system_prompt = """Given a chat history and the latest user question \
|
| 27 |
+
which might reference context in the chat history, formulate a standalone question \
|
| 28 |
+
which can be understood without the chat history. Do NOT answer the question, \
|
| 29 |
+
just reformulate it if needed and otherwise return it as is."""
|
| 30 |
+
contextualize_q_prompt = ChatPromptTemplate.from_messages(
|
| 31 |
+
[
|
| 32 |
+
("system", contextualize_q_system_prompt),
|
| 33 |
+
MessagesPlaceholder("chat_history"),
|
| 34 |
+
("human", "{input}"),
|
| 35 |
+
]
|
| 36 |
+
)
|
| 37 |
+
|
| 38 |
+
# also manages the case where chat_history is empty, and otherwise applies prompt | llm | StrOutputParser() | retriever in sequence.
|
| 39 |
+
history_aware_retriever = create_history_aware_retriever(
|
| 40 |
+
llm, retriever, contextualize_q_prompt
|
| 41 |
+
)
|
| 42 |
+
### Answer question
|
| 43 |
+
qa_system_prompt = """You're an assistant that answers questions about movies and films. \
|
| 44 |
+
and eloquent answers to questions about movies. Use the following pieces of \
|
| 45 |
+
retrieved context to answer the question. Use three sentences maximum and \
|
| 46 |
+
keep the answer concise.
|
| 47 |
+
|
| 48 |
+
{context}"""
|
| 49 |
+
qa_prompt = ChatPromptTemplate.from_messages(
|
| 50 |
+
[
|
| 51 |
+
("system", qa_system_prompt),
|
| 52 |
+
MessagesPlaceholder("chat_history"),
|
| 53 |
+
("human", "{input}"),
|
| 54 |
+
]
|
| 55 |
+
)
|
| 56 |
+
|
| 57 |
+
# chain to accept the retrieved context alongside the conversation history and query to generate an answer
|
| 58 |
+
question_answer_chain = create_stuff_documents_chain(llm, qa_prompt)
|
| 59 |
+
|
| 60 |
+
# This chain applies the history_aware_retriever and question_answer_chain in sequence, retaining intermediate outputs such as the retrieved context for convenience
|
| 61 |
+
rag_chain = create_retrieval_chain(history_aware_retriever, question_answer_chain)
|
| 62 |
+
|
| 63 |
+
### Statefully manage chat history
|
| 64 |
+
store = {}
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
def get_session_history(session_id: str) -> BaseChatMessageHistory:
|
| 68 |
+
if session_id not in store:
|
| 69 |
+
store[session_id] = ChatMessageHistory()
|
| 70 |
+
return store[session_id]
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
@cl.on_chat_start
|
| 74 |
+
async def on_chat_start():
|
| 75 |
+
conversational_rag_chain = RunnableWithMessageHistory(
|
| 76 |
+
rag_chain,
|
| 77 |
+
get_session_history,
|
| 78 |
+
input_messages_key="input",
|
| 79 |
+
history_messages_key="chat_history",
|
| 80 |
+
output_messages_key="answer",
|
| 81 |
+
)
|
| 82 |
+
cl.user_session.set("runnable", conversational_rag_chain)
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
@cl.on_message
|
| 86 |
+
async def on_message(message: cl.Message):
|
| 87 |
+
runnable = cl.user_session.get("runnable") # type: Runnable
|
| 88 |
+
msg = cl.Message(content="")
|
| 89 |
+
|
| 90 |
+
async for chunk in runnable.astream(
|
| 91 |
+
{"input": message.content},
|
| 92 |
+
config=RunnableConfig(
|
| 93 |
+
callbacks=[cl.LangchainCallbackHandler()],
|
| 94 |
+
configurable={"session_id": cl.user_session.get("id")},
|
| 95 |
+
),
|
| 96 |
+
):
|
| 97 |
+
# process Documents to be JSON serializable and passed into the context window but not served up as part of the tokened response
|
| 98 |
+
if "context" in chunk:
|
| 99 |
+
docs = chunk["context"]
|
| 100 |
+
docs_dict = [
|
| 101 |
+
{"page_content": doc.page_content, "metadata": doc.metadata}
|
| 102 |
+
for doc in docs
|
| 103 |
+
]
|
| 104 |
+
chunk["context"] = json.dumps(docs_dict)
|
| 105 |
+
if "answer" in chunk:
|
| 106 |
+
await msg.stream_token(chunk["answer"])
|
| 107 |
+
await msg.send()
|
chainlit.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Welcome to Chainlit! ππ€
|
| 2 |
+
|
| 3 |
+
Hi there, Developer! π We're excited to have you on board. Chainlit is a powerful tool designed to help you prototype, debug and share applications built on top of LLMs.
|
| 4 |
+
|
| 5 |
+
## Useful Links π
|
| 6 |
+
|
| 7 |
+
- **Documentation:** Get started with our comprehensive [Chainlit Documentation](https://docs.chainlit.io) π
|
| 8 |
+
- **Discord Community:** Join our friendly [Chainlit Discord](https://discord.gg/k73SQ3FyUh) to ask questions, share your projects, and connect with other developers! π¬
|
| 9 |
+
|
| 10 |
+
We can't wait to see what you create with Chainlit! Happy coding! π»π
|
| 11 |
+
|
| 12 |
+
## Welcome screen
|
| 13 |
+
|
| 14 |
+
To modify the welcome screen, edit the `chainlit.md` file at the root of your project. If you do not want a welcome screen, just leave this file empty.
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
datasets
|
| 2 |
+
tiktoken
|
| 3 |
+
pandas
|
| 4 |
+
chainlit
|
| 5 |
+
langchain-community
|
| 6 |
+
langchain==0.2.0
|
| 7 |
+
langchain-openai==0.1.7
|
retriever.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
from datasets import load_dataset
|
| 3 |
+
from langchain_community.document_loaders.csv_loader import CSVLoader
|
| 4 |
+
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
| 5 |
+
from langchain_openai import OpenAIEmbeddings
|
| 6 |
+
from langchain.embeddings import CacheBackedEmbeddings
|
| 7 |
+
from langchain.storage import LocalFileStore
|
| 8 |
+
from langchain_community.vectorstores import FAISS
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
def fetch_retriever_or_load_local_retriever():
|
| 12 |
+
csv_path = "./imdb.csv"
|
| 13 |
+
if not os.path.exists(csv_path):
|
| 14 |
+
dataset = load_dataset("ShubhamChoksi/IMDB_Movies")
|
| 15 |
+
dataset["train"].to_csv("imdb.csv")
|
| 16 |
+
|
| 17 |
+
loader = CSVLoader(file_path=csv_path)
|
| 18 |
+
data = loader.load()
|
| 19 |
+
|
| 20 |
+
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=100)
|
| 21 |
+
chunked_documents = text_splitter.split_documents(data)
|
| 22 |
+
|
| 23 |
+
embedding_model = OpenAIEmbeddings()
|
| 24 |
+
store = LocalFileStore("./cache/")
|
| 25 |
+
cached_embedder = CacheBackedEmbeddings.from_bytes_store(
|
| 26 |
+
embedding_model, store, namespace=embedding_model.model
|
| 27 |
+
)
|
| 28 |
+
|
| 29 |
+
index_path = "local_index"
|
| 30 |
+
if os.path.exists(index_path):
|
| 31 |
+
vector_store = FAISS.load_local(
|
| 32 |
+
index_path, cached_embedder, allow_dangerous_deserialization=True
|
| 33 |
+
)
|
| 34 |
+
else:
|
| 35 |
+
vector_store = FAISS.from_documents(chunked_documents, cached_embedder)
|
| 36 |
+
vector_store.save_local(index_path)
|
| 37 |
+
|
| 38 |
+
return vector_store.as_retriever()
|