Skip to content

Commit dfefb0d

Browse files
committed
chore: Minor fixes
1 parent 576f66a commit dfefb0d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/concepts/themes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# Themes
99

10-
A newly added feature in **v2** of the chatbot, the `themes` prop allows users a quick and convenient way to customize their chatbot. Browsing of themes can be done on [**React ChatBotify Gallery**](https://react-chatbotify.com) or manually via the [**GitHub Themes Repository**](https://github.com/react-chatbotify/react-chatbotify-themes/tree/main/themes).
10+
A newly added feature in **v2** of the chatbot, the `themes` prop allows users a quick and convenient way to customize their chatbot. Browsing of themes can be done on [**React ChatBotify Gallery**](https://react-chatbotify.com) or manually via the [**GitHub Themes Repository**](https://github.com/react-chatbotify/community-themes/tree/main/themes).
1111

1212
The `theme` prop can accept a single **Theme** object or a list of it. A Theme object contains the following fields:
1313
- **id**: id of the theme
1414
- **version**: version number for the theme
1515
- **cacheDuration**: duration to cache the theme for before fetching again
1616
- **baseUrl**: base url for fetching the theme from
1717

18-
The only required field is **id**, though you are also encouraged to specify the **version** in case a theme update deviates from your intended design. The **cacheDuration** allows you to specify in seconds how long a theme should be cached for (default 30 days). The **baseUrl** is an advanced feature, useful only if you are hosting your own [**GitHub Themes Repository**](https://github.com/react-chatbotify/react-chatbotify-themes/tree/main/themes). If you are exploring such an option and need help setting up the repository, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
18+
The only required field is **id**, though you are also encouraged to specify the **version** in case a theme update deviates from your intended design. The **cacheDuration** allows you to specify in seconds how long a theme should be cached for (default 30 days). The **baseUrl** is an advanced feature, useful only if you are hosting your own [**GitHub Themes Repository**](https://github.com/react-chatbotify/community-themes/tree/main/themes). If you are exploring such an option and need help setting up the repository, feel free to reach out on [**discord**](https://discord.gg/6R4DK4G5Zh).
1919

2020
:::tip Tip
2121

docs/examples/gemini_integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# Gemini Integration
99

10-
The following is an example showing how to integrate [**Google Gemini**](https://ai.google.dev/gemini-api/docs) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example also taps on the [**GeminiProvider**](https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/Gemini.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
10+
The following is an example showing how to integrate [**Google Gemini**](https://ai.google.dev/gemini-api/docs) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example also taps on the [**GeminiProvider**](https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/Gemini.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
1111

1212
:::tip
1313

@@ -53,7 +53,7 @@ const MyChatBot = () => {
5353
gemini: {
5454
llmConnector: {
5555
// provider configuration guide:
56-
// https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/Gemini.md
56+
// https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/Gemini.md
5757
provider: new GeminiProvider({
5858
mode: 'direct',
5959
model: 'gemini-1.5-flash',

docs/examples/llm_conversation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# LLM Conversation
99

10-
The following is an example showing how to integrate in-browser models (e.g. via [**WebLlm**](https://webllm.mlc.ai/)) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example taps on the [**WebLlmProvider**](https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/WebLlm.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
10+
The following is an example showing how to integrate in-browser models (e.g. via [**WebLlm**](https://webllm.mlc.ai/)) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example taps on the [**WebLlmProvider**](https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/WebLlm.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
1111

1212
:::tip
1313

@@ -43,7 +43,7 @@ const MyChatBot = () => {
4343
webllm: {
4444
llmConnector: {
4545
// provider configuration guide:
46-
// https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/WebLlm.md
46+
// https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/WebLlm.md
4747
provider: new WebLlmProvider({
4848
model: 'Qwen2-0.5B-Instruct-q4f16_1-MLC',
4949
}),

docs/examples/openai_integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords: [react, chat, chatbot, chatbotify]
77

88
# OpenAI Integration
99

10-
The following is an example showing how to integrate [**OpenAI**](https://platform.openai.com/) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example also taps on the [**OpenaiProvider**](https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/OpenAI.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
10+
The following is an example showing how to integrate [**OpenAI**](https://platform.openai.com/) into React ChatBotify. It leverages on the [**LLM Connector Plugin**](https://www.npmjs.com/package/@rcb-plugins/llm-connector), which is maintained separately on the [**React ChatBotify Plugins**](https://github.com/orgs/React-ChatBotify-Plugins) organization. This example also taps on the [**OpenaiProvider**](https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/OpenAI.md), which ships by default with the LLM Connector Plugin. If you require support with the plugin, please reach out to support on the [**plugins discord**](https://discord.gg/J6pA4v3AMW) instead.
1111

1212
:::tip
1313

@@ -53,7 +53,7 @@ const MyChatBot = () => {
5353
openai: {
5454
llmConnector: {
5555
// provider configuration guide:
56-
// https://github.com/React-ChatBotify-Plugins/llm-connnector/blob/main/docs/providers/OpenAI.md
56+
// https://github.com/React-ChatBotify-Plugins/llm-connector/blob/main/docs/providers/OpenAI.md
5757
provider: new OpenaiProvider({
5858
mode: 'direct',
5959
model: 'gpt-4.1-nano',

0 commit comments

Comments
 (0)