A new package designed to facilitate the creation and control of animated characters in real-world environments by interpreting user instructions and transforming them into structured action plans. It
Project description
motionify
motionify is a lightweight Python package that converts natural‑language descriptions of character behaviors, movements, and interactions into precise, structured action plans. It is built to bridge the gap between textual commands and the data‑driven directives needed by animation or robotics systems—without handling any multimedia content directly.
✨ Features
- Natural‑language to actions – feed a sentence, get a list of validated directives.
- Pattern‑based verification – ensures output matches a predefined regex pattern.
- Plug‑and‑play LLM – uses
ChatLLM7by default, but any LangChain‑compatible LLM can be supplied. - Zero‑setup API key handling – automatically reads
LLM7_API_KEYfrom the environment.
📦 Installation
pip install motionify
🚀 Quick Start
from motionify import motionify
# Example user instruction
user_input = "Make the robot wave its right hand and take a step forward."
# Call the function (uses default ChatLLM7)
actions = motionify(user_input)
print(actions)
# Output: ['wave right_hand', 'step forward']
🛠️ Function Signature
def motionify(
user_input: str,
api_key: Optional[str] = None,
llm: Optional[BaseChatModel] = None
) -> List[str]:
| Parameter | Type | Description |
|---|---|---|
user_input |
str |
The natural‑language description to be processed. |
api_key |
Optional[str] |
API key for LLM7. If omitted, the function reads LLM7_API_KEY from the environment or falls back to the default key. |
llm |
Optional[BaseChatModel] |
Your own LangChain LLM instance. When omitted, ChatLLM7 (from langchain_llm7) is used automatically. |
🔧 Using Your Own LLM
You can replace the built‑in ChatLLM7 with any LangChain‑compatible chat model.
OpenAI
from langchain_openai import ChatOpenAI
from motionify import motionify
llm = ChatOpenAI(model="gpt-4o")
actions = motionify(user_input, llm=llm)
Anthropic
from langchain_anthropic import ChatAnthropic
from motionify import motionify
llm = ChatAnthropic(model="claude-3-5-sonnet")
actions = motionify(user_input, llm=llm)
Google Generative AI
from langchain_google_genai import ChatGoogleGenerativeAI
from motionify import motionify
llm = ChatGoogleGenerativeAI(model="gemini-1.5-pro")
actions = motionify(user_input, llm=llm)
🔑 API Key Management
- Default: The package looks for
LLM7_API_KEYin your environment. - Explicit: Provide it directly to the function:
motionify(user_input, api_key="YOUR_KEY"). - Free Tier: The LLM7 free tier offers generous rate limits suitable for most projects.
- Upgrade: Register for a free key at LLM7 token portal for higher limits.
📬 Support & Issues
If you encounter any problems or have feature requests, please open an issue on GitHub:
👉 https://github.com/chigwell/motionify/issues
👤 Author
Eugene Evstafev
📧 Email: hi@euegne.plus
🐙 GitHub: chigwell
📄 License
Distributed under the MIT License. See LICENSE for more information.
Happy animating!
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 motionify-2025.12.21173502.tar.gz.
File metadata
- Download URL: motionify-2025.12.21173502.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb13b889bb2778cd992c9ef0cd9c6c553ec8e132316928514ef61b7bb404beff
|
|
| MD5 |
f724ec8069e8481541dee8599e9bdd3b
|
|
| BLAKE2b-256 |
c8814868cfaef120f5db3474d4b507d0f93628a83abb8e0abc344700486e23cd
|
File details
Details for the file motionify-2025.12.21173502-py3-none-any.whl.
File metadata
- Download URL: motionify-2025.12.21173502-py3-none-any.whl
- Upload date:
- Size: 5.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 |
3d9940208065de16f1b88fdce8725109720c27647d6fa5b07c65447ee402cb8f
|
|
| MD5 |
06e7f7d3e15a7cc99f9aab717b7b9e6a
|
|
| BLAKE2b-256 |
60e9d9114b3c8406109aee000021284291b71febbdea8fd0ffb6235629b0efd5
|