transcript-insightful extracts and structures key insights from video transcripts, delivering concise themes and implications.
Project description
Transcript Insightful
This package extracts and structures key insights from video summaries or transcripts. It takes a text input describing a video's content, such as a summary or transcript, and uses LLM7 to parse and return a structured response.
Overview
The package provides a simple way to extract the essence of a video without watching it in full. It's ideal for educational content, technical talks, or industry discussions. The structured output includes main themes, critical points, and potential implications discussed in the video.
Installation
pip install transcript_insightful
Usage
from transcript_insightful import transcript_insightful
response = transcript_insightful(
user_input="Video summary or transcript text",
api_key="Your LLM7 API key",
llm="Your custom LLM instance (e.g. ChatOpenAI, ChatAnthropic, etc.)"
)
print(response) # Output: {"themes": [...], "critical_points": [...], "implications": [...]}
Parameters
user_input: The text input describing the video's content.llm: An optionalBaseChatModelinstance to use. Defaults toChatLLM7fromlangchain_llm7.api_key: An optional API key for LLM7. Defaults toNone.
Using custom LLM instances
You can safely pass your own llm instance if you want to use another LLM, for example:
from langchain_openai import ChatOpenAI
from transcript_insightful import transcript_insightful
llm = ChatOpenAI()
response = transcript_insightful(llm=llm)
or for example to use the anthropic:
from langchain_anthropic import ChatAnthropic
from transcript_insightful import transcript_insightful
llm = ChatAnthropic()
response = transcript_insightful(llm=llm)
or google:
from langchain_google_genai import ChatGoogleGenerativeAI
from transcript_insightful import transcript_insightful
llm = ChatGoogleGenerativeAI()
response = transcript_insightful(llm=llm)
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 for LLM7, you can pass your own API key via environment variable LLM7_API_KEY or via passing it directly like transcript_insightful(api_key="your_api_key").
Getting a free API key
You can get a free API key by registering at https://token.llm7.io/
Issues
For any issues or feature requests, please visit https://github.com/chigwell/transcript-insightful
Author
Eugene Evstafev (github: @chigwell) hi@eugene.plus
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 transcript_insightful-2025.12.21185930.tar.gz.
File metadata
- Download URL: transcript_insightful-2025.12.21185930.tar.gz
- Upload date:
- Size: 5.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 |
eda2d2e004f9c521b061237a1aed7faf9067c1d74385fb784631790485f215f6
|
|
| MD5 |
a34dacbc8f6b76827cb0aecaea8d8e2b
|
|
| BLAKE2b-256 |
b7c3d093742e1db00bded19b7005d9157ada7113fc83b3e3311ea9906fce89e9
|
File details
Details for the file transcript_insightful-2025.12.21185930-py3-none-any.whl.
File metadata
- Download URL: transcript_insightful-2025.12.21185930-py3-none-any.whl
- Upload date:
- Size: 6.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 |
f7f331e853b6bc3aa7962c815468fa52ac8f2790984d975431f6f2c72f93acd0
|
|
| MD5 |
1b84bf49124f875296fab53ec91ccd45
|
|
| BLAKE2b-256 |
dd75d7fd71fb747cda2cf8eeac441b2420eac8ebc06916eccfa7f9316f663437
|