KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
AgenticAGI
โ 15
Open GitHub โ
Advanced Strawberry Logic for All LLMs
Download README (.md)
Explore Similar Repositories
SDUI-Demo-KMP
:
No description available.
OSEP
:
No description available.
wild-snake-boa-ii
:
A snake game for MS-DOS. ๐
SynthLC
:
No description available.
Yukino
:
Intel Virtualization / VT-X Basic Framework
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
AgenticAGI
?
Download (.md)
# AgenticAGI - by [Simulanics Technologies](https://www.simulanics.com) AgenticAGI is Strawberry Logic for ALL LLMs - The AGI system allows all LLMs to operate like OpenAI's o1-preview/o1-mini models - only more useful... **Welcome to AgenticAGI โ The Future of Autonomous AI Reasoning** ๐ค๐ AgenticAGI is a cutting-edge AI system that turns any large language model (LLM) into a powerful, self-correcting, deeply reasoning agent. By implementing a transparent and iterative thought process, AgenticAGI delivers more accurate, flexible, and efficient interactions, providing continuous improvement with every task. Whether you're solving complex problems, running code, or generating data visualizations, AgenticAGI is your comprehensive problem-solving partner. For Developers: [See Python Integration](PYTHON_INTEGRATION.md) - Make sure to download the latest release of AgenticAGI for your platform from the `Releases` page. You'll need to specify its location when using Python. AgenticAGI Python Library Usage Cookbook <a target="_blank" href="https://colab.research.google.com/github/simulanics/AgenticAGI/blob/main/AgenticAGI_Python_Usage_Cookbook.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> </a>  ## Features - โ **Deep Chain-of-Thought Reasoning** Unlike traditional AI systems that generate quick responses based on surface-level understanding, AgenticAGI dives deeper to ensure that every answer is logical and highly accurate. - โ **Self-Correction & Confidence Scoring** AgenticAGI doesnโt just provide answersโit self-corrects and attaches confidence scores, ensuring reliable outcomes for any task. - โ **Transparency & Full Auditability** Gain full control and insight into AgenticAGIโs reasoning process. Every decision can be reviewed, audited, and trusted. - โ **Multi-Model Compatibility** AgenticAGI works with various LLM providers, including OpenAI, Ollama, Groq, and more, offering flexibility without being tied to a single ecosystem. - โ **Reinforcement Learning** Continuous learning ensures that the system becomes more efficient and accurate over time, adapting to user needs. - โ **Real-Time Actions** AgenticAGI is capable of web searches ๐, executing Python scripts ๐, interacting with hardware ๐ ๏ธ, and more, offering solutions beyond simple responses.   ## Colab Cookbooks AgenticAGI Command-Line Demo <a target="_blank" href="https://colab.research.google.com/github/simulanics/AgenticAGI/blob/main/AgenticAGI_Command_Line_Cookbook.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> </a> AgenticAGI Python Library Usage Cookbook <a target="_blank" href="https://colab.research.google.com/github/simulanics/AgenticAGI/blob/main/AgenticAGI_Python_Usage_Cookbook.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> </a> More Cookbooks to Come! ## Installation ### 1. Download ๐พ Choose your preferred OS from the releases page: - [macOS 64 bit](#) - [macOS ARM 64 bit](#) - [Windows 32 bit](#) - [Windows 64 bit](#) - [Linux 32 bit](#) - [Linux 64 bit](#) - [Raspberry Pi ARM 32/64 bit](#) ### 2. Extract ๐ Once downloaded, extract the contents to a directory of your choice. **AgenticAGI** can even run directly from a USB for ultimate portability! ๐ฅ๏ธ๐ก ### 3. Run โถ๏ธ Navigate to the directory and simply execute the appropriate file for your platform (including required command-line flags): - For Windows: `agi.exe` - For Linux/macOS: `./agi` Youโre ready to unlock the full potential of AGI reasoning! ๐๐ค **MacOS users will need to run the included `codesign.sh` file in order to sign and run the AGI locally.** ## Usage AgenticAGI is a command-line tool that can be customized to fit your needs. Hereโs a basic example of how to get started: ### Interactive Mode ๐ฌ Launch AgenticAGI in interactive mode where it awaits your commands: ```bash agi --interactive true --cooldown 3 --apikey YOUR_API_KEY --model llama-3.1-70b-versatile ``` ### Fully Autonomous Mode ๐คโ๏ธ Run a task autonomously, such as retrieving a WiFi password, with no human-in-the-middle: ```bash agi --cooldown 3 --apikey YOUR_API_KEY --model llama-3.1-70b-versatile --task "Retrieve WiFi password for 'TheNet'" ``` ### Available Flags ๐ - `--apiendpoint` : Completions URL endpoint (DEFAULT = `https://api.groq.com/openai/v1/chat/completions`). - `--apikey` : LLM API key. - `--confidence` : (Confidence/Truthfulness/Satisfaction/Validity) score (0-100%) of the final answer, provided in JSON format (DEFAULT = True). - `--contextlimit` : Maximum number of memories used to make decisions (DEFAULT = 50). - `--cooldown` : Duration in seconds between LLM requests (DEFAULT = 10). - `--fao` : Final Answer Only. If set to true, see `--schema` flag for structured data output. - `--hitm` : Human-in-the-middle allows the AGI to ask the user for information during task completion (DEFAULT = True). - `--inputprice` : Set the INPUT price of tokens per million. See `--showprice` flag. - `--interactive` : Start Agentic AGI in interactive mode. Each task run is a new session (DEFAULT = False). - `--maxcorrections` : Sets the self-correction limit (DEFAULT = 3). - `--model` : LLM model to use. - `--newlines` : Outputs newlines as \n (DEFAULT = False). - `--outputprice` : Set the OUTPUT price of tokens per million. See `--showprice` flag. - `--pytimeout` : Python script timeout period (in seconds) before Python is terminated and control is returned to the AGI (DEFAULT = 60 sec). - `--schema` : A defined custom tag (`<search>{query}</search>`) or JSON structure (`{ "ans": {{final_response}} }`) for the 'final answer'/response. See `--fao` flag. - `--selfcorrect` : Allow the model to self-correct when confidence/truthfulness < 92%, satisfaction < 85%, or inaccurate/invalid perception > 3% (DEFAULT = False). When enabled, confidence will auto-enable. See `--maxcorrections` flag. - `--showprice` : Show token usage and input/output pricing per task completion. See `--inputprice` and `--outputprice` flags (DEFAULT = False). - `--steplimit` : The maximum number of steps the AGI can perform before answering or giving up (DEFAULT = 25). - `--task` : The task to be solved or completed. - `--urlencode` : Encodes output using URL encoding (DEFAULT = False). **Note**: By default, Groq is the default LLM service if an `--apiendpoint` is not specified. For a full list of commands, run: ```bash agi --help ``` ## Examples ๐ ### Example 1: Solving Advanced Problems ๐ ```bash agi --task "What is the integral of x^2?" --model llama-3.1-70b-versatile --apikey YOUR_API_KEY ``` AgenticAGI will not only give you the answer but also walk through the steps to reach that conclusion using Python! โจ๐ ### Example 2: Automating a Web Search and Content Creation ๐ ```bash agi --task "Search the web for the latest AI trends in 2024 and write a report" --model llama-3.1-70b-versatile --apikey YOUR_API_KEY ``` AgenticAGI can browse the web, synthesize information, and deliver actionable insights. ๐ ### Example 3: Hardware Interaction ๐ ๏ธ ```bash agi --task "Install a new Python package and run a script" --model llama-3.1-70b-versatile --apikey YOUR_API_KEY ``` AgenticAGI can autonomously install tools, manage system resources, and run code. โ๏ธ๐ป ## Why AgenticAGI? AgenticAGI stands out because it doesnโt just provide answers โ it **reasons** through problems. Its adaptive learning algorithms allow it to get better with every use, making it the perfect tool for developers, data analysts, and businesses looking to leverage the next level of AI technology. ๐ ### Key Benefits ๐ - **Increased Accuracy**: By thinking through problems, AgenticAGI reduces errors and provides more reliable outcomes. The system will also fact check against reputable web sources, or use the web to learn how to perform a task that has been requested, or obtain missing information needed to solve a task or problem it is unfamiliar with. - **Reduced Token Usage**: Efficiency in solving multi-step problems reduces the number of tokens used, cutting down costs ๐ฐ. - **Flexible Deployment**: Use AgenticAGI with any LLM provider, whether proprietary or open-source. - **Future-Proof**: Decentralized learning ensures that AgenticAGI stays on the cutting edge of AI technology without losing past abilities. ## Future Updates ๐ We are continually improving AgenticAGI, with upcoming features such as: - **Cloud-Learning Sync**: Share learned abilities with other AGI systems to enhance collective intelligence. - **Deep Memory**: Enable AGI to retain and apply knowledge across long-term tasks, improving efficiency and learning rates. ## Testimonials ๐ฃ๏ธ > โAgenticAGI has been a game-changer for our data analysis team. It not only provides accurate results but shows us the reasoning behind each step.โ > *โ Samantha T., Data Scientist* > โIts ability to reason like a human sets AgenticAGI apart. Iโve used it to write and debug code, and it performs with precision and accuracy.โ > *โ Carlos M., Senior Developer* > โThe transparency and self-correcting features have saved us countless hours. AgenticAGI doesnโt just give answersโit verifies them, ensuring we get the best results.โ > *โ Michael D., Data Analyst* ## Contributing ๐ค We welcome contributions! Feel free to submit issues or pull requests as we continue to grow this project. Check out our [contribution guidelines](CONTRIBUTING.md) to get started. ## License ๐ This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. ## Get in Touch ๐ฌ For any questions, feedback, or business inquiries, contact us via [Simulanics Technologies](https://www.simulanics.com/contact). --- **Unlock the potential of AgenticAGI** โ Your evolving, reasoning AI system that adapts to your needs. Start today and experience the future of AI! ๐๐ค ## Star History [](https://star-history.com/#Simulanics/AgenticAGI&Date)