https://github.com/chigwell/hybrid-cloud-navigator
A new package that helps users understand and navigate the complexities of hybrid cloud environments in 2025. Users can input their specific hybrid cloud challenges, such as data gravity (the tendency
https://github.com/chigwell/hybrid-cloud-navigator
actionable-recommendations best-practices cloud-architecture cloud-challenges cost-efficiency data-gravity egress-shock llmatch-messages performance-optimization problem-identification scenario-based-solutions structured-insights
Last synced: 5 months ago
JSON representation
A new package that helps users understand and navigate the complexities of hybrid cloud environments in 2025. Users can input their specific hybrid cloud challenges, such as data gravity (the tendency
- Host: GitHub
- URL: https://github.com/chigwell/hybrid-cloud-navigator
- Owner: chigwell
- Created: 2025-12-21T17:46:57.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-12-21T17:47:05.000Z (5 months ago)
- Last Synced: 2025-12-23T06:54:50.462Z (5 months ago)
- Topics: actionable-recommendations, best-practices, cloud-architecture, cloud-challenges, cost-efficiency, data-gravity, egress-shock, llmatch-messages, performance-optimization, problem-identification, scenario-based-solutions, structured-insights
- Language: Python
- Homepage: https://pypi.org/project/hybrid-cloud-navigator/
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hybrid_cloud_navigator
[](https://badge.fury.io/py/hybrid-cloud-navigator)
[](https://opensource.org/licenses/MIT)
[](https://pepy.tech/project/hybrid-cloud-navigator)
[](https://www.linkedin.com/in/eugene-evstafev-716669181/)
==========================
## Overview
----------
A Python package to help users navigate the complexities of hybrid cloud environments in 2025. It takes user input, processes it, and provides structured, actionable insights to mitigate data gravity and egress shock, optimize cloud architecture, and ensure cost-efficiency and performance in hybrid cloud setups.
## Installation
------------
```bash
pip install hybrid_cloud_navigator
```
## Usage
-----
```python
from hybrid_cloud_navigator import hybrid_cloud_navigator
response = hybrid_cloud_navigator(
user_input="Your specific hybrid cloud challenges",
api_key="Your LLM7 API key"
)
```
You can also pass your own LLM instance if you want to use another language model:
```python
from langchain_llm7 import ChatLLM7
from hybrid_cloud_navigator import hybrid_cloud_navigator
llm = ChatLLM7(api_key="Your LLM7 API key")
response = hybrid_cloud_navigator(
user_input="Your specific hybrid cloud challenges",
llm=llm
)
```
Or using other LLMs:
```python
from langchain_openai import ChatOpenAI
from hybrid_cloud_navigator import hybrid_cloud_navigator
llm = ChatOpenAI()
response = hybrid_cloud_navigator(
user_input="Your specific hybrid cloud challenges",
llm=llm
)
# Using Anthropic
from langchain_anthropic import ChatAnthropic
from hybrid_cloud_navigator import hybrid_cloud_navigator
llm = ChatAnthropic()
response = hybrid_cloud_navigator(
user_input="Your specific hybrid cloud challenges",
llm=llm
)
# Using Google GenAI
from langchain_google_genai import ChatGoogleGenerativeAI
from hybrid_cloud_navigator import hybrid_cloud_navigator
llm = ChatGoogleGenerativeAI()
response = hybrid_cloud_navigator(
user_input="Your specific hybrid cloud challenges",
llm=llm
)
```
## API Documentation
------------------
### hybrid_cloud_navigator function
------------------------------
* `user_input`: the user input text to process (str)
* `api_key`: the LLM7 API key (Optional[str])
* `llm`: the langchain LLM instance to use (Optional[BaseChatModel])
* Returns: a list of actionable insights
## Contributing
------------
Contributions are welcome.
## Rate Limits
------------
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you need higher rate limits, you can pass your own API key via environment variable `LLM7_API_KEY` or directly.
You can get a free API key by registering at https://token.llm7.io/.
## Issues
-------
https://github.com/chigwell/hybrid_cloud_navigator/issues
## Author
-----
Eugene Evstafev (hi@eugeneplus.com)