# cohere-toolkit **Repository Path**: py-service/cohere-toolkit ## Basic Information - **Project Name**: cohere-toolkit - **Description**: https://github.com/cohere-ai/cohere-toolkit 一站式、可部署的RAG应用框架 包含了前端、后端、数据库和部署指南的完整项目 展示了如何使用FastAPI、Docker、Next.js等现代技术栈,构建一个模块化、可扩展且易于维护的复杂AI应用 https://mp.weixin.qq.com/s/LY_2a-LeKQTcCpETVp7mLw - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-11 - **Last Updated**: 2026-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![](/docs/assets/banner.png) # Cohere Toolkit Toolkit is a deployable all-in-one RAG application that enables users to quickly build their LLM-based product. - [Try Toolkit](#try-now) - [About Toolkit](#about-toolkit) - [Toolkit Setup](/docs/setup.md) - [Troubleshooting](/docs/troubleshooting.md) - [How to guides](/docs/how_to_guides.md) - [How to set up command model providers](/docs/command_model_providers.md) - [How to add tools](/docs/custom_tool_guides/tool_guide.md) - [How to add auth to your tools](/docs/custom_tool_guides/tool_auth_guide.md) - [How to setup Google Drive](/docs/custom_tool_guides/google_drive.md) - [How to setup Gmail](/docs/custom_tool_guides/gmail.md) - [How to setup Slack Tool](/docs/custom_tool_guides/slack.md) - [How to setup Github Tool](/docs/custom_tool_guides/github.md) - [How to setup Sharepoint](/docs/custom_tool_guides/sharepoint.md) - [How to setup Google Text-to-Speech](/docs/text_to_speech.md) - [How to add authentication](/docs/auth_guide.md) - [How to deploy toolkit services](/docs/service_deployments.md) - [How to debug dockerized Toolkit API with VSCode/PyCharm](/docs/debugging.md) - [How to set up Github Actions for automated DB migrations](/docs/github_migrations_action.md) - [How to customize the theme](/docs/theming.md) - [How to contribute](#contributing) - [Try Cohere's Command Showcase](https://coral.cohere.com/) ![](/docs/assets/toolkit.gif) ## Try Now: There are two main ways for quickly running Toolkit: local and cloud. See the specific instructions given below. ### Local _You will need to have [Docker](https://www.docker.com/products/docker-desktop/), [Docker-compose >= 2.22](https://docs.docker.com/compose/install/), and [Poetry](https://python-poetry.org/docs/#installation) installed. [Go here for a more detailed setup.](/docs/setup.md)_ Note: to include community tools when building locally, set the `INSTALL_COMMUNITY_DEPS` build arg in the `docker-compose.yml` to `true`. Both options will serve the frontend at http://localhost:4000. #### Using `make` Use the provided Makefile to simplify and automate your development workflow with Cohere Toolkit, including Docker Compose management, testing, linting, and environment setup. ```bash git clone https://github.com/cohere-ai/cohere-toolkit.git cd cohere-toolkit make first-run ``` #### Docker Compose only Use Docker Compose directly if you want to quickly spin up and manage your container environment without the additional automation provided by the Makefile. ```bash git clone https://github.com/cohere-ai/cohere-toolkit.git cd cohere-toolkit docker compose up docker compose run --build backend alembic -c src/backend/alembic.ini upgrade head ``` ### Cloud #### GitHub Codespaces To run this project using GitHub Codespaces, please refer to our [Codespaces Setup Guide](/docs/github_codespaces.md). ## About Toolkit ![](/docs/assets/toolkit_graphic.png) - **Interfaces** - any client-side UI, currently contains two web apps, one agentic and one basic, and a Slack bot implementation. - Defaults to Cohere's Web UI at `src/interfaces/assistants_web` - A web app built in Next.js. Includes a simple SQL database out of the box to store conversation history in the app. - You can change the Web UI using the docker compose file. - **Backend API** - in `src/backend` this follows a similar structure to the [Cohere Chat API](https://docs.cohere.com/reference/chat) but also include customizable elements: - **Model** - you can customize with which provider you access Cohere's Command models. By default included in the toolkit is Cohere's Platform, Sagemaker, Azure, Bedrock, HuggingFace, local models. [More details here.](/docs/command_model_providers.md) - **Retrieval**- you can customize tools and data sources that the application is run with. - **Service Deployment Guides** - we also include guides for how to deploy the toolkit services in production including with AWS, GCP and Azure. [More details here.](/docs/service_deployments.md) ## Contributing Contributions are what drive an open source community, any contributions made are greatly appreciated. To get started, check out our [documentation.](CONTRIBUTING.md) ## Contributors Made with [contrib.rocks](https://contrib.rocks).