-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implemented speech to text. Requires checking for tests --------- Co-authored-by: Willy Douhard <willy.douhard@gmail.com>
- Loading branch information
1 parent
60b3d1f
commit 62192d9
Showing
6 changed files
with
151 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
[project] | ||
# Whether to enable telemetry (default: true). No personal data is collected. | ||
enable_telemetry = true | ||
|
||
# List of environment variables to be provided by each user to use the app. | ||
user_env = [] | ||
|
||
# Duration (in seconds) during which the session is saved when the connection is lost | ||
session_timeout = 3600 | ||
|
||
# Enable third parties caching (e.g LangChain cache) | ||
cache = false | ||
|
||
# Follow symlink for asset mount (see https://github.com/Chainlit/chainlit/issues/317) | ||
# follow_symlink = false | ||
|
||
[features] | ||
# Show the prompt playground | ||
prompt_playground = true | ||
|
||
# Authorize users to upload files with messages | ||
multi_modal = true | ||
|
||
[UI] | ||
# Name of the app and chatbot. | ||
name = "Chatbot" | ||
|
||
# Show the readme while the conversation is empty. | ||
show_readme_as_default = true | ||
|
||
# Description of the app and chatbot. This is used for HTML tags. | ||
# description = "" | ||
|
||
# Large size content are by default collapsed for a cleaner ui | ||
default_collapse_content = true | ||
|
||
# The default value for the expand messages settings. | ||
default_expand_messages = false | ||
|
||
# Hide the chain of thought details from the user in the UI. | ||
hide_cot = false | ||
|
||
# Link to your github repo. This will add a github button in the UI's header. | ||
# github = "" | ||
|
||
# Specify a CSS file that can be used to customize the user interface. | ||
# The CSS file can be served from the public directory or via an external link. | ||
# custom_css = "/public/test.css" | ||
|
||
# Allows user to use speech to text | ||
# speech_to_text = true | ||
|
||
# Override default MUI light theme. (Check theme.ts) | ||
[UI.theme.light] | ||
#background = "#FAFAFA" | ||
#paper = "#FFFFFF" | ||
|
||
[UI.theme.light.primary] | ||
#main = "#F80061" | ||
#dark = "#980039" | ||
#light = "#FFE7EB" | ||
|
||
# Override default MUI dark theme. (Check theme.ts) | ||
[UI.theme.dark] | ||
#background = "#FAFAFA" | ||
#paper = "#FFFFFF" | ||
|
||
[UI.theme.dark.primary] | ||
#main = "#F80061" | ||
#dark = "#980039" | ||
#light = "#FFE7EB" | ||
|
||
|
||
[meta] | ||
generated_by = "0.7.301" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters