Hey devs π
After 30 incredible days of growth β 8,000+ downloads, 31 GitHub stars, and feedback from around the globe β I'm thrilled to announce something important for the community:
DoCoreAI is now MIT Licensed π
(Goodbye CC-BY-NC-4.0, Hello open contribution freedom!)
π What is DoCoreAI?
DoCoreAI (Dynamic Optimization & Contextual Response Engine) is a lightweight Python package that tackles a subtle but critical challenge in LLM usage:
π‘οΈ Prompt temperature tuning.
Youβve probably seen this before:
response = openai.ChatCompletion.create(
prompt="Explain relativity to a child",
temperature=0.7
)
That temperature value? It decides the creativity of the AI response β but most of us are just guessing.
DoCoreAI changes that.
It calculates the optimal temperature based on your promptβs intent β analyzing parameters like:
π€ Reasoning
π¨ Creativity
π― Precision
All without fine-tuning.
All from the prompt itself.
π§ͺ Example
from DoCoreAI import intelligence_profiler
params = intelligence_profiler("Write a fun poem about gravity", return_params=True)
# Output: {'reasoning': 3.2, 'creativity': 4.7, 'precision': 2.1, 'temperature': 0.84}
Now thatβs smarter prompt engineering!
π‘ Why the License Change?
Moving to the MIT License was a deliberate decision.
It means:
β
No commercial restrictions
π€ Easier collaboration and forking
π Aligning with the open-source spirit
Whether you're building internal tools, LLM wrappers, or AI agents β you're welcome to use, remix, and build on top of DoCoreAI.
π Join the Dev Mission
π¦ Install:
pip install docoreai
π» GitHub:
π https://github.com/SajiJohnMiranda/DoCoreAI
π§ Explore, star βοΈ the repo, raise issues, or contribute your ideas. Whether itβs performance tweaks, new metrics, or creative plugins β letβs push the limits of contextual optimization together.
Letβs stop guessing AI parameters β
and start letting them intelligently adapt.
Top comments (0)