OpynGPT is a Python module that empowers developers to effortlessly harness the capabilities of large language models (LLMs) without the need for authentication or API keys. Designed with simplicity and accessibility in mind, OpynGPT supercharges your Python projects by providing natural language generation and understanding capabilities, making it an invaluable tool for developers of all skill levels.
- No API Keys Required: OpynGPT eliminates the hassle of acquiring and managing API keys, providing a seamless and straightforward integration with language models.
- Natural Language Generation: Leverage the power of LLMs to generate human-like text responses based on your input prompts, enabling a wide range of applications such as chatbots, content generation, and more.
- Beginner-Friendly: With its intuitive interface and easy-to-use functions, OpynGPT is the perfect starting point for developers new to language models, allowing them to explore and experiment with ease.
- Command-Line Interface: Interact with OpynGPT via the command line for both interactive sessions and single queries, providing flexibility and ease of use directly from the terminal.
- Phind Model Integration: Inspired by the renowned tgpt project, OpynGPT utilizes the powerful Phind Model, ensuring high-quality language generation and understanding capabilities.
- Open-Source: OpynGPT is an open-source project, allowing developers to contribute, customize, and extend its functionality to suit their specific needs and requirements.
Before diving into OpynGPT, ensure you have the following prerequisites installed:
- Python 3.x
- The
requests
library (Install usingpip install requests
)
Installing OpynGPT is as simple as running the following command:
pip install opyngpt
To install the latest version from the GitHub repository, use:
pip install git+https://github.com/anxkhn/OpynGPT.git
Here's a quick guide to get you started:
- Import the
prompt
function from the OpynGPT module:
from opyngpt import prompt
- Use the
prompt
function to generate natural language responses based on your input:
user_input = "Write a factorial code in Python."
response = prompt(user_input)
print(response)
OpynGPT will process your input and return a relevant response, empowering you to integrate language models into your projects seamlessly.
To enter the interactive mode, simply open your terminal and type opyngpt
. Then you can enter your messages and receive responses interactively. Type exit
or press Ctrl+C
to quit the interactive mode.
Example:
$ opyngpt
Enter your message (type 'exit' to quit): Hello, how are you?
[OpynGPT]: I'm doing well, thank you for asking. How can I assist you today?
Enter your message (type 'exit' to quit): What is the capital of France?
[OpynGPT]: The capital of France is Paris.
Enter your message (type 'exit' to quit): exit
To make a single query, use opyngpt "your query"
in your terminal, replacing "your query"
with your actual query.
Example:
$ opyngpt "What is the capital of Japan?"
[OpynGPT]: The capital of Japan is Tokyo.
- Added support for prompt with context
- Interactive Mode now supports context
- Special thanks to @devout-coder for the contribution
- Added Command Line Interface (CLI)
- Added Interactive Mode to CLI
- Improved error handling
- Switched to Phind Model
- Bug free working version with proper error handling
- Initial release with basic functionality released as FreeGPTpy
We welcome contributions from the community to make OpynGPT even better. If you'd like to contribute, please follow these steps:
- Fork the repository
- Create a new branch for your feature or bug fix
- Make your changes and commit them
- Push your changes to your forked repository
- Submit a pull request to the main repository
OpynGPT is licensed under the GPLv3 License. For more information about this license, please visit this website.