-
Notifications
You must be signed in to change notification settings - Fork 0
add day 12 #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add day 12 #106
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds two documentation files to the EchoKit "30 Days" series: Day 10 about using OpenRouter as an LLM provider, and Day 12 about switching to Grok with built-in web search capabilities. Both documents provide step-by-step guides for configuring EchoKit to work with different LLM providers through simple configuration changes.
Key Changes:
- Added Day 10 documentation covering OpenRouter integration for flexible LLM model selection
- Added Day 12 documentation explaining Grok integration with web search capabilities
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| doc/dev/2025-12-05-echokit-day-12-grok.md | Adds tutorial for switching EchoKit to use Grok LLM with web search feature |
| doc/dev/2025-12-03-echokit-day-10-openrouter.md | Adds tutorial for configuring EchoKit to use OpenRouter as an LLM provider |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 1 out of 2 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| ```toml | ||
| [llm] | ||
| llm_chat_url = "https://api.x.ai/v1/chat/completions" |
Copilot
AI
Dec 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent configuration key naming. This file uses llm_chat_url while the OpenRouter documentation (doc/dev/2025-12-03-echokit-day-10-openrouter.md:45) uses chat_url for the same purpose. These should be consistent across the documentation to avoid confusion.
| llm_chat_url = "https://api.x.ai/v1/chat/completions" | |
| chat_url = "https://api.x.ai/v1/chat/completions" |
Co-authored-by: Copilot <[email protected]>
Co-authored-by: Copilot <[email protected]>
No description provided.