idea-extractor extracts, categorizes, and scores high‑impact software ideas from forum discussions, outputting themes, feasibility and market impact.
Project description
idea-extractor
idea‑extractor is a lightweight Python package that helps you pull high‑impact software ideas from community discussions.
Feed it text from forums like Hacker News, Reddit, or any discussion thread and it will parse, categorize, and summarize potential software ideas based on community trends, feasibility, and market impact.
Install
pip install idea_extractor
Quick Start
# Import the function – note the underscore instead of the hyphen in the module name
from idea_extractor import idea_extractor
# Plain text from a discussion thread
user_text = """
I've noticed that a lot of devs complain about the hassle of setting up CI/CD pipelines for small projects.
Maybe there's a lightweight, plug‑and‑play service that automatically generates GitHub Actions or CircleCI configs from a simple config file.
"""
# Call the function with the default LLM7 engine
ideas = idea_extractor(user_input=user_text)
# ideas is a list of strings, each representing a structured idea
print(ideas)
Customizing the LLM
By default idea_extractor will use the free tier of ChatLLM7 (via langchain_llm7).
If you prefer another LLM, simply pass an instance that follows the BaseChatModel API.
Using OpenAI
from langchain_openai import ChatOpenAI
from idea_extractor import idea_extractor
llm = ChatOpenAI() # your OpenAI configuration is handled automatically
response = idea_extractor(user_input="...", llm=llm)
Using Anthropic
from langchain_anthropic import ChatAnthropic
from idea_extractor import idea_extractor
llm = ChatAnthropic()
response = idea_extractor(user_input="...", llm=llm)
Using Google Gemini
from langchain_google_genai import ChatGoogleGenerativeAI
from idea_extractor import idea_extractor
llm = ChatGoogleGenerativeAI()
response = idea_extractor(user_input="...", llm=llm)
API Reference
def idea_extractor(
user_input: str,
api_key: Optional[str] = None,
llm: Optional[BaseChatModel] = None
) -> List[str]
| Parameter | Type | Description |
|---|---|---|
user_input |
str |
Raw text from a community discussion to analyze. |
llm |
Optional[BaseChatModel] |
An instance of a LangChain LLM. If omitted, the package defaults to ChatLLM7. |
api_key |
Optional[str] |
API key for the free tier of ChatLLM7. If not supplied, the environment variable LLM7_API_KEY is used. |
The function returns a list of extracted ideas, each formatted as a concise sentence or short paragraph.
Configuration
LLM7 Free Tier
The default ChatLLM7 free tier includes sufficient rate limits for most projects.
If you need higher rates, supply your own key:
export LLM7_API_KEY="your_api_key_here" # or pass directly via the api_key parameter
Free keys can be obtained by registering at https://token.llm7.io/.
Issues & Support
Found a bug or want to request a feature? Open an issue on GitHub: https://github.....
Author
- Name: Eugene Evstafev
- Email: hi@euegne.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 idea_extractor-2025.12.21195340.tar.gz.
File metadata
- Download URL: idea_extractor-2025.12.21195340.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
901f8ef41c3414a2652c56a854accf953d40798f5a9c3dd5241b0095207aebd9
|
|
| MD5 |
2da9bd2e9fd89555fb1608a8c0301498
|
|
| BLAKE2b-256 |
3ea573bede5606f7116b63ec8862cd6746c5bb943c883a048b0957e3b00d79dc
|
File details
Details for the file idea_extractor-2025.12.21195340-py3-none-any.whl.
File metadata
- Download URL: idea_extractor-2025.12.21195340-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58537aea2f2fbd793992a0aced1714e31545bb69ad69812934b145a36d20a5ba
|
|
| MD5 |
eec48326f5f3a8fea1d9f35cc6f4879f
|
|
| BLAKE2b-256 |
9823f4e99f289d4192ce5af4f1bb59d89d2b97b382f37ef323a6b4c2010572a5
|