Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahmedbesbes/cowriter
A writing assistant using Langchain
https://github.com/ahmedbesbes/cowriter
langchain large-language-models llms openai writing-assistant
Last synced: 3 months ago
JSON representation
A writing assistant using Langchain
- Host: GitHub
- URL: https://github.com/ahmedbesbes/cowriter
- Owner: ahmedbesbes
- Created: 2023-06-28T14:31:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T09:21:05.000Z (about 1 year ago)
- Last Synced: 2024-05-08T00:26:05.335Z (10 months ago)
- Topics: langchain, large-language-models, llms, openai, writing-assistant
- Language: Python
- Homepage:
- Size: 561 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cowriter
Cowriter helps you automatically or semi-automatically write technical blog posts.
It first asks you about a topic of interest, then guides you through the process of writing the introduction as well as the subsequent sections.
It can also go wild in autopilot mode (use this responsibly)
![]()
### Tools and libraries used
* **Langchain** 🦜 to build and compose LLMs
* **Rich** to build a cool terminal UX/UI
* **Poetry** to manage dependencies### Third party services
* OpenAI (🔑 needed)### Run the app locally
* Install dependencies with poetry
```bash
poetry install --with dev
```* Add API credentials
Create .env file at the root of the project with the following keys:
```bash
OPENAI_API_KEY=
```More info on these credentials [here](https://openai.com/)
* Run the app
```bash
make run-cowriter
```