Your AI-Powered Command-Line Companion!
PikoAi powered by the OpenCopilot framework, transforms your terminal into an intelligent assistant. Seamlessly integrate AI into your daily workflow to automate tasks, conduct research, interact with web services, and much more. Stop switching contexts and let your copilot handle the heavy lifting, right from your command line.
Install it using a single pip command
pip install pikoaiWatch a glimpse of OpenCopilot's capabilities:
This demo showcases how OpenCopilot can understand your requests, interact with web pages, and provide you with the information you need, all within your terminal.
- LLM-Powered Task Automation: Leverages cutting-edge Large Language Models to understand your natural language prompts and orchestrate complex task execution.
- Multi-Provider Support: Flexibility to choose and switch between various LLM providers such as Mistral, Groq, OpenAI, Anthropic, and Gemini.
- Extensible Tool System: Equip your AI agent with a growing library of custom tools to interact with files, system details, web content, and more.
- Versatile Execution Modes:
- Conversational Mode: Engage in an interactive dialogue to collaboratively accomplish tasks.
- One-Shot Task Execution: Directly execute specific tasks with a single, concise command.
- User-Friendly CLI: An intuitive command-line interface to manage configurations, tools, API keys, and task execution.
- Web Interaction: Browse websites, extract information, and perform web searches directly through the agent.
You can install OpenCopilot using pip:
pip install pikoaiAlternatively, to install from source:
- Clone the repository:
git clone https://github.com/Piko-AI/OpenCopilot.git
- Navigate to the project directory:
cd OpenCopilot - Create a virtual environment:
or if you have multiple Python versions:
python -m venv venv
python3 -m venv venv
- Activate the virtual environment:
- Windows:
venv\Scripts\activate
- macOS/Linux:
source venv/bin/activate
- Windows:
- Install dependencies:
pip install -r requirements.txt
Once the installation is complete, you can run OpenCopilot from the root directory of the project:
python Src/cli.pyor
python3 Src/cli.pyThis will start OpenCopilot in conversational mode. You can also use it for one-shot tasks.
Execute tasks directly without entering the conversational mode:
python Src/cli.py --task "Your task description here"You can also set the maximum number of iterations for a task:
python Src/cli.py --task "Your task description here" --max-iter 5We welcome contributions! Please feel free to fork the repository, make your changes, and submit a pull request. For major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the terms of the LICENSE file.
