Welcome to the WriterAI repository! This project integrates the GenAI and MetaLlama3 to provide a powerful writing assistant tool. You can either run the application locally or access it online. Follow the instructions below for both options.
You can access the running application directly at: Writerr on Streamlit
Clone this repository to your local machine using:
git clone https://github.com/tinkvu/WriterAI.git
cd WriterAI
- Visit Google AI Studio to get your GenAI API Key.
- Sign up or log in to obtain the key.
- Contact TogetherAI to receive your API key.
- Visit their website or reach out to their support team for instructions.
Add your API keys to a .env
file in the root directory or directly in the app.py
file.
Create a .env
file and add the following lines:
genaiAPI=your_genai_api_key
togetherApi=your_togetherai_api_key
Alternatively, you can hardcode the API keys into app.py
(not recommended for production):
genaiAPI = "your_genai_api_key"
togetherApi = "your_togetherai_api_key"
Install the required dependencies using pip:
pip install -r requirements.txt
Start the Streamlit application with:
streamlit run app.py
Here are some snapshots of the application in action:
We welcome contributions! If you'd like to contribute, please follow the standard GitHub workflow:
- Fork the repository.
- Create a new branch.
- Make your changes.
- Submit a pull request.
For any questions or issues, feel free to open an issue on the GitHub repository.
Happy coding! 🚀