A new package designed to analyze and extract structured insights from user-submitted summaries or descriptions related to cloud infrastructure topics. Given an input text about a specific subject lik
Project description
CloudInsight Extractor
CloudInsight Extractor is a Python package designed to analyze and extract structured insights from user-submitted summaries or descriptions related to cloud infrastructure topics. Given an input text about a specific subject like cloud infrastructure developments, the package uses a language model to identify key themes, trends, and innovative points, presenting the results in a clear, organized format. This helps users quickly grasp essential information without manually sifting through lengthy descriptions, facilitating better understanding and decision-making in technical domains.
Installation
To install the CloudInsight Extractor package, run the following command:
pip install cloudinsight_extractor
Usage
Here is an example of how to use the cloudinsight_extractor function:
from cloudinsight_extractor import cloudinsight_extractor
# Example usage with default LLM7
response = cloudinsight_extractor(user_input="Your input text here")
print(response)
Using a Custom LLM
You can also use a custom LLM instance from LangChain. Here are examples for different LLM providers:
Using OpenAI
from langchain_openai import ChatOpenAI
from cloudinsight_extractor import cloudinsight_extractor
llm = ChatOpenAI()
response = cloudinsight_extractor(user_input="Your input text here", llm=llm)
print(response)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from cloudinsight_extractor import cloudinsight_extractor
llm = ChatAnthropic()
response = cloudinsight_extractor(user_input="Your input text here", llm=llm)
print(response)
Using Google
from langchain_google_genai import ChatGoogleGenerativeAI
from cloudinsight_extractor import cloudinsight_extractor
llm = ChatGoogleGenerativeAI()
response = cloudinsight_extractor(user_input="Your input text here", llm=llm)
print(response)
Parameters
user_input(str): The user input text to process.llm(Optional[BaseChatModel]): The LangChain LLM instance to use. If not provided, the defaultChatLLM7will be used.api_key(Optional[str]): The API key for LLM7. If not provided, the package will use the environment variableLLM7_API_KEYor a default value.
Default LLM
By default, the package uses ChatLLM7 from the langchain_llm7 package. You can find more information about ChatLLM7 here.
Rate Limits
The default rate limits for LLM7 free tier are sufficient for most use cases of this package. If you want higher rate limits for LLM7, you can pass your own API key via the environment variable LLM7_API_KEY or directly via the api_key parameter. You can get a free API key by registering at LLM7.
Issues
If you encounter any issues or have suggestions, please open an issue on the GitHub repository.
Author
- Eugene Evstafev
- Email: hi@eugene.plus
- GitHub: chigwell
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudinsight_extractor-2025.12.21112353.tar.gz.
File metadata
- Download URL: cloudinsight_extractor-2025.12.21112353.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d1fff224986fe6346c9282511c8a14929fbdec47ee4944ea051a0d2713f9a41
|
|
| MD5 |
f641520cd4b3b19cfb99acb148ca655d
|
|
| BLAKE2b-256 |
9a967482c81d4c8758f60b8f56de637faeb728b4b528860b085a44a6a0f31d80
|
File details
Details for the file cloudinsight_extractor-2025.12.21112353-py3-none-any.whl.
File metadata
- Download URL: cloudinsight_extractor-2025.12.21112353-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab227c70a631ad1a6c5c23e2dc9f4b182b6025055045897c65fe451e6b144687
|
|
| MD5 |
a33945520549b2aed47a6599b3db4f71
|
|
| BLAKE2b-256 |
99c3b88bc67270ef96721b41beccf54bd315e87c096b730ce9d36a803d5bb2ac
|