Welcome to the Think Tank repository! This open-source platform enables collaboration among AI agents to research and generate valuable insights. With the ability to store results in Notion and Markdown, Think Tank simplifies the process of organizing and sharing knowledge. The platform also supports web searches, allowing agents to access real-time information.
To get started with Think Tank, you need to download the latest release. Visit the Releases section to find the latest version. Download the necessary files and execute them to set up your environment.
Before running Think Tank, ensure you have the following installed:
Clone the repository:
git clone https://github.com/Bhaktiswarup/think_tank.git
cd think_tank
Install the required packages:
pip install -r requirements.txt
Set up your Notion API key:
.env
file in the root directory.NOTION_API_KEY=your_notion_api_key_here
Run the application:
python main.py
To create a new AI agent, use the following command:
agent = Agent(name="Researcher", capabilities=["research", "data analysis"])
You can customize the agent's capabilities based on your needs. Once created, agents can collaborate with each other.
Agents can communicate and share insights through a simple API. Use the following method to send messages between agents:
agent1.send_message(agent2, "What are the latest trends in AI?")
To store results in Notion, use the Notion integration functions. For example:
notion_client.create_page(title="AI Trends", content=results)
This function will create a new page in your Notion workspace with the specified title and content.
This repository covers various topics related to AI and collaboration:
We welcome contributions from the community! If you would like to contribute, please follow these steps:
git checkout -b feature/my-feature
git commit -m "Add my feature"
git push origin feature/my-feature
This project is licensed under the MIT License. See the LICENSE file for details.
If you have any questions or need support, please open an issue in the repository. You can also reach out to the community for assistance.
We would like to thank the contributors and the open-source community for their support and contributions. Your efforts make this project possible.
For the latest updates and releases, visit our Releases section. Download the latest version and start collaborating with AI agents today!