{"id":37072602,"url":"https://github.com/chigwell/hybrid-cloud-navigator","last_synced_at":"2026-01-14T08:31:34.042Z","repository":{"id":329784855,"uuid":"1120670729","full_name":"chigwell/hybrid-cloud-navigator","owner":"chigwell","description":"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","archived":false,"fork":false,"pushed_at":"2025-12-21T17:47:05.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T06:54:50.462Z","etag":null,"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"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/hybrid-cloud-navigator/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chigwell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-21T17:46:57.000Z","updated_at":"2025-12-21T17:47:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/chigwell/hybrid-cloud-navigator","commit_stats":null,"previous_names":["chigwell/hybrid-cloud-navigator"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/chigwell/hybrid-cloud-navigator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Fhybrid-cloud-navigator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Fhybrid-cloud-navigator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Fhybrid-cloud-navigator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Fhybrid-cloud-navigator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chigwell","download_url":"https://codeload.github.com/chigwell/hybrid-cloud-navigator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chigwell%2Fhybrid-cloud-navigator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28414173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:31:27.429Z","status":"ssl_error","status_checked_at":"2026-01-14T08:31:19.098Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["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"],"created_at":"2026-01-14T08:31:33.293Z","updated_at":"2026-01-14T08:31:34.031Z","avatar_url":"https://github.com/chigwell.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hybrid_cloud_navigator\n[![PyPI version](https://badge.fury.io/py/hybrid-cloud-navigator.svg)](https://badge.fury.io/py/hybrid-cloud-navigator)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![Downloads](https://static.pepy.tech/badge/hybrid-cloud-navigator)](https://pepy.tech/project/hybrid-cloud-navigator)\n[![LinkedIn](https://img.shields.io/badge/LinkedIn-blue)](https://www.linkedin.com/in/eugene-evstafev-716669181/)\n\n==========================\n\n## Overview\n----------\n\nA 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.\n\n## Installation\n------------\n\n```bash\npip install hybrid_cloud_navigator\n```\n\n## Usage\n-----\n\n```python\nfrom hybrid_cloud_navigator import hybrid_cloud_navigator\n\nresponse = hybrid_cloud_navigator(\n    user_input=\"Your specific hybrid cloud challenges\",\n    api_key=\"Your LLM7 API key\"\n)\n```\n\nYou can also pass your own LLM instance if you want to use another language model:\n\n```python\nfrom langchain_llm7 import ChatLLM7\nfrom hybrid_cloud_navigator import hybrid_cloud_navigator\n\nllm = ChatLLM7(api_key=\"Your LLM7 API key\")\nresponse = hybrid_cloud_navigator(\n    user_input=\"Your specific hybrid cloud challenges\",\n    llm=llm\n)\n```\n\nOr using other LLMs:\n\n```python\nfrom langchain_openai import ChatOpenAI\nfrom hybrid_cloud_navigator import hybrid_cloud_navigator\n\nllm = ChatOpenAI()\nresponse = hybrid_cloud_navigator(\n    user_input=\"Your specific hybrid cloud challenges\",\n    llm=llm\n)\n\n# Using Anthropic\nfrom langchain_anthropic import ChatAnthropic\nfrom hybrid_cloud_navigator import hybrid_cloud_navigator\n\nllm = ChatAnthropic()\nresponse = hybrid_cloud_navigator(\n    user_input=\"Your specific hybrid cloud challenges\",\n    llm=llm\n)\n\n# Using Google GenAI\nfrom langchain_google_genai import ChatGoogleGenerativeAI\nfrom hybrid_cloud_navigator import hybrid_cloud_navigator\n\nllm = ChatGoogleGenerativeAI()\nresponse = hybrid_cloud_navigator(\n    user_input=\"Your specific hybrid cloud challenges\",\n    llm=llm\n)\n```\n\n## API Documentation\n------------------\n\n### hybrid_cloud_navigator function\n------------------------------\n\n* `user_input`: the user input text to process (str)\n* `api_key`: the LLM7 API key (Optional[str])\n* `llm`: the langchain LLM instance to use (Optional[BaseChatModel])\n* Returns: a list of actionable insights\n\n## Contributing\n------------\n\nContributions are welcome.\n\n## Rate Limits\n------------\n\nThe 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.\n\nYou can get a free API key by registering at https://token.llm7.io/.\n\n## Issues\n-------\n\nhttps://github.com/chigwell/hybrid_cloud_navigator/issues\n\n## Author\n-----\n\nEugene Evstafev (hi@eugeneplus.com)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchigwell%2Fhybrid-cloud-navigator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchigwell%2Fhybrid-cloud-navigator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchigwell%2Fhybrid-cloud-navigator/lists"}