Skip to content

Commit

Permalink
Documentation updated
Browse files Browse the repository at this point in the history
  • Loading branch information
yohasebe committed Jan 22, 2025
1 parent b1d5a0e commit d799966
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 109 deletions.
Binary file added docs/assets/icons/d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/console-panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,5 @@ Enter your Mistral API key. This key is required to use the Mistral AI models. I
**XAI_API_KEY** <br />
Enter your xAI API key. This key is required to use the xAI Grok models. It can be obtained from [https://x.ai/api].

**DEEPSEEK_API_KEY** <br />
Enter your DeepSeek API key. This key is required to use the DeepSeek models. It can be obtained from [https://platform.deepseek.com/].
Binary file added docs/ja/assets/icons/d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/ja/console-panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,5 @@ Anthropic APIキーを入力してください。このキーはAnthropic Claude
**XAI_API_KEY**<br /> xAI APIキーを入力してください。このキーはxAI Grok モデルを使用するのに必要です。[https://x.ai/api]で取得できます。

**PERPLEXITY_API_KEY**<br /> Perplexity APIキーを入力してください。このキーはPerplexity モデルを使用するのに必要です。[https://perplexity.ai/]で取得できます。

**DEEPSEEK_API_KEY**<br /> DeepSeek APIキーを入力してください。このキーはDeepSeek モデルを使用するのに必要です。[https://platform.deepseek.com/]で取得できます。
106 changes: 6 additions & 100 deletions docs/language-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,37 +26,6 @@ ANTHROPIC_API_KEY=api_key

?> For apps using Anthropic Claude's Sonnet series models, it is possible to upload a PDF directly and have the AI agent recognize its contents. (See [PDF recognition](./message-input?id=uploading-pdfs))

Once the Anthropic API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.

<details>
<summary>chat_claude_app.rb</summary>

[chat_claude_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_claude/chat_claude_app.rb ':include :type=code')

</details>

<details>
<summary>code_interpreter_claude_app.rb</summary>

[code_interpreter_claude_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_claude/code_interpreter_claude_app.rb ':include :type=code')

</details>

<details>
<summary>coding_assistant_claude_app.rb</summary>

[code_interpreter_claude_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_claude/coding_assistant_claude_app.rb ':include :type=code')

</details>

<details>

<summary>jupyter_notebook_claude_app.rb</summary>

![jupyter_notebook_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_claude/jupyter_notebook_claude_app.rb ':include :type=code')

</details>

## Google Models

![Google apps icon](./assets/icons/google.png ':size=40')
Expand All @@ -67,22 +36,6 @@ By setting the Google Gemini API key, you can use apps that utilize Gemini. Once
GEMINI_API_KEY=api_key
```

Once the Google Gemini API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.

<details>
<summary>chat_gemini_app.rb</summary>

[chat_gemini_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_gemini/chat_gemini_app.rb ':include :type=code')

</details>

<details>
<summary>coding_assistant_gemini_app.rb</summary>

![chat_gemini_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_gemini/coding_assistant_gemini_app.rb ':include :type=code')

</details>

## Cohere Models

![Cohere apps icon](./assets/icons/c.png ':size=40')
Expand All @@ -93,22 +46,6 @@ By setting the Cohere API key, you can use apps that utilize Command R. Once set
COHERE_API_KEY=api_key
```

Once the Cohere API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.

<details>
<summary>chat_command_r_app.rb</summary>

[chat_command_r_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_cohere/chat_command_r_app.rb ':include :type=code')

</details>

<details>
<summary>coding_assistant_command_r_app.rb</summary>

[coding_assistant_command_r_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_cohere/coding_assistant_command_r_app.rb ':include :type=code')

</details>

## Mistral Models

![Mistral apps icon](./assets/icons/m.png ':size=40')
Expand All @@ -119,22 +56,6 @@ By setting the Mistral AI API key, you can use apps that utilize Mistral. Once s
MISTRAL_API_KEY=api_key
```

Once the Mistral API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.

<details>
<summary>chat_mistral_app.rb</summary>

[chat_mistral_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_mistral/chat_mistral_app.rb ':include :type=code')

</details>

<details>
<summary>coding_assistant_mistral_app.rb</summary>

[coding_assistant_mistral_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_mistral/coding_assistant_mistral_app.rb ':include :type=code')

</details>

## xAI Models

![xAI apps icon](./assets/icons/x.png ':size=40')
Expand All @@ -145,22 +66,6 @@ By setting the xAI API key, you can use apps that utilize xAI. Once set, the API
XAI_API_KEY=api_key
```

Once the xAI API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.

<details>
<summary>chat_grok_app.rb</summary>

![chat_grok_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_grok/chat_grok_app.rb ':include :type=code')

</details>

<details>
<summary>coding_assistant_grok_app.rb</summary>

![chat_grok_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_grok/coding_assistant_grok_app.rb ':include :type=code')

</details>

## Perplexity Models

![Perplexity apps icon](./assets/icons/p.png ':size=40')
Expand All @@ -171,14 +76,15 @@ By setting the Perplexity API key, you can use apps that utilize Perplexity. Onc
PERPLEXITY_API_KEY=api_key
```

Once the Perplexity API key is set, you can use the following apps. For information on the features of each app, refer to the [Basic Apps](./basic-apps.md) section.
## DeepSeek Models

<details>
<summary>chat_perplexity_app.rb</summary>
![DeepSeek apps icon](./assets/icons/d.png ':size=40')

![chat_perplexity_app.rb](https://raw.githubusercontent.com/yohasebe/monadic-chat/refs/heads/main/docker/services/ruby/apps/talk_to_perplexity/chat_perplexity_app.rb ':include :type=code')
By setting the DeepSeek API key, you can use apps that utilize DeepSeek. Once set, the API key is saved in the `~/monadic/config/env` file in the following format:

</details>
```
DEEPSEEK_API_KEY=api_key
```

## Ollama Models

Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d799966

Please sign in to comment.