-
Notifications
You must be signed in to change notification settings - Fork 59
Getting the basic edits made. #623
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
base: main
Are you sure you want to change the base?
Conversation
|
🌿 Preview your docs: https://cohere-preview-e0209576-bb58-441d-a1e5-25031ac62e49.docs.buildwithfern.com |
|
🌿 Preview your docs: https://cohere-preview-6f2a9e05-1a98-43b5-97c6-c2d27062e6ab.docs.buildwithfern.com |
|
🌿 Preview your docs: https://cohere-preview-3df551a1-cad6-4b50-8825-5b216544e0b1.docs.buildwithfern.com |
Signed-off-by: trentfowlercohere <141260477+trentfowlercohere@users.noreply.github.com>
|
🌿 Preview your docs: https://cohere-preview-2d1acaf0-02f7-4466-9005-a4c8f70cab9c.docs.buildwithfern.com |
fern/pages/changelog/2025-09-15-announcing-major-command-deprecations.mdx
Show resolved
Hide resolved
|
|
||
| Deprecated Features and API Endpoints: | ||
| - /v1/connectors (Managed connectors for RAG) | ||
| - /v1/chat parameters: connectors, search_queries_only |
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.
Should we separate this line from the rest? It reads a bit like we're deprecating /v1/chat ?
|
|
||
| Deprecated Features and API Endpoints: | ||
| - `/v1/connectors` (Managed connectors for RAG) | ||
| - `/v1/chat` parameters: `connectors`, `search_queries_only` |
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.
same comment as above about separating
| - Command R 08 2024 | ||
| - Command R | ||
| - Command R+ 08 2024 | ||
| - Command R+ |
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.
We still have command-r-08-2024 and command-r-plus-08-2024?
| - Command R+ 08 2024 | ||
| - Command R+ | ||
| - Command R 08 2024 | ||
| - Command R |
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.
We still have command-r-08-2024 and command-r-plus-08-2024?
|
|
||
| Text summarization distills essential information and generates concise snippets from dense documents. With Cohere, you can do text summarization via the Chat endpoint. | ||
|
|
||
| Command R and R+ support a 128k context length and Command A supports a 256k context length, so you can pass long documents to be summarized. |
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.
Should we leave command r and r+ models here but mention only the refreshes?
| | `command-r-plus` | `cohere.command-r-plus-v1:0` | Unique per deployment | Unique per deployment | `cohere.command-r-plus v1.2` | | ||
| | `command-r` | `cohere.command-r-v1:0` | Unique per deployment | Unique per deployment | `cohere.command-r-16k v1.2` | | ||
| | `command` | `cohere.command-text-v14` | N/A | N/A | `cohere.command v15.6` | | ||
| | `command-nightly` | N/A | N/A | N/A | N/A | | ||
| | `command-light` | `cohere.command-light-text-v14` | N/A | N/A | `cohere.command-light v15.6` | | ||
| | `command-light-nightly` | N/A | N/A | N/A | N/A | |
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.
Should we just add a deprecated column like above?
Migrate all documentation from deprecated search_queries_only parameter to modern tool call approach for search query generation. Main Documentation: - fern/pages/text-generation/retrieval-augmented-generation-rag.mdx - fern/pages/text-generation/streaming.mdx - fern/pages/cookbooks/rag-with-chat-embed.mdx - fern/pages/cookbooks/analysis-of-financial-forms.mdx - fern/pages/cookbooks/agentic-rag-mixed-data.mdx Tutorials: - fern/pages/tutorials/build-things-with-cohere/rag-with-cohere.mdx - fern/pages/tutorials/cohere-on-azure/azure-ai-rag.mdx Notebooks: - notebooks/guides/getting-started/tutorial_pt6.ipynb Scripts: - scripts/cookbooks-mdx/rag-with-chat-embed.mdx - scripts/cookbooks-mdx/analysis-of-financial-forms.mdx - scripts/cookbooks-mdx/agentic-rag-mixed-data.mdx Changes: - Replace search_queries_only=True with tools parameter and force_single_step=True - Update response.search_queries to response.tool_calls[0].parameters["queries"] - Maintain original voice, tone and educational flow - Preserve all working code examples and explanations Impact: Users now see modern tool call examples instead of deprecated parameter across all primary RAG documentation.
|
🌿 Preview your docs: https://cohere-preview-17b41f23-de8d-4deb-a3ce-4501fe80f60a.docs.buildwithfern.com |
COMPLETE: All primary user-facing documentation migrated from search_queries_only to tool calls Main Documentation (5 files): - fern/pages/text-generation/retrieval-augmented-generation-rag.mdx - fern/pages/text-generation/streaming.mdx - fern/pages/cookbooks/rag-with-chat-embed.mdx - fern/pages/cookbooks/analysis-of-financial-forms.mdx - fern/pages/cookbooks/agentic-rag-mixed-data.mdx Tutorials (2 files): - fern/pages/tutorials/build-things-with-cohere/rag-with-cohere.mdx - fern/pages/tutorials/cohere-on-azure/azure-ai-rag.mdx Scripts (3 files): - scripts/cookbooks-mdx/rag-with-chat-embed.mdx - scripts/cookbooks-mdx/analysis-of-financial-forms.mdx - scripts/cookbooks-mdx/agentic-rag-mixed-data.mdx Changes applied: - Replace search_queries_only=True with tools=query_gen_tool, force_single_step=True - Update response.search_queries to response.tool_calls[0].parameters["queries"] - Maintain original voice, tone and educational flow - All working code examples preserved IMPACT: Core RAG documentation migration complete - users see modern tool call examples NOTE: Notebook files still need individual cell updates
All functional code examples migrated from search_queries_only to tool calls NOTEBOOKS COMPLETED: - notebooks/guides/getting-started/tutorial_pt6.ipynb - notebooks/guides/cohere-on-azure/azure-ai-rag.ipynb - notebooks/guides/RAG_with_Chat_Embed_and_Rerank_via_Pinecone.ipynb - notebooks/guides/Analysis_of_Form_10_K_Using_Cohere_and_RAG.ipynb - notebooks/guides/Optimizing_rag_workflows_with_rerank_and_query_rephrasing.ipynb - notebooks/llmu/RAG_with_Chat_Embed_and_Rerank.ipynb - notebooks/llmu/co_aws_ch6_rag_bedrock_sm.ipynb - notebooks/agents/agentic-RAG/agentic_rag_langchain.ipynb FULL MIGRATION SCOPE: Main Documentation (5), Tutorials (2), Scripts (3), Notebooks (8) = 18 total files IMPACT: Complete deprecation migration - users see modern tool call examples REMAINING: Only 3 auto-generated JSON metadata files + text references
|
🌿 Preview your docs: https://cohere-preview-79a8bc83-d1fa-4bfd-9202-eed415675888.docs.buildwithfern.com |
| slug: "docs/chat-fine-tuning" | ||
|
|
||
| hidden: False | ||
| hidden: true |
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.
nit:
I wonder if it's expected to set this page as hidden. I believe then it will return 404 instead of beign available via direct link. (and same for other pages)
In another similar PR we changed hidden field in v1.yml and v2.yml to hide page from navigation but still be available for direct links
This PR is about the deprecation of several Command models and endpoints, as well as the release of Command A Translate.