
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
The Lodash for GenAI: Real Value + Consistent + Model-Agnostic
ActiveGenie is a developer-first library for GenAI workflows, designed to help you extract, compare, score, and rank with consistency and model-agnostic. Think of it as the Lodash for GenAI: built for real value, consistent results, and freedom from vendor lock-in. It solves the biggest pain in GenAI today: getting predictable, trustworthy answers across use cases, models, and providers.
Behind the scenes, a custom benchmarking system keeps everything consistent across LLM vendors and versions, release after release.
For full documentation, visit activegenie.ai.
gem 'active_genie'
bundle install
echo "ActiveGenie.load_tasks" >> Rakefile
rails active_genie:install
config/initializers/active_genie.rb
:ActiveGenie.configure do |config|
config.providers.openai.api_key = ENV['OPENAI_API_KEY']
end
Extract structured data from text using AI-powered analysis, handling informal language and complex expressions.
text = "Nike Air Max 90 - Size 42 - $199.99"
schema = {
brand: {
type: 'string',
enum: ["Nike", "Adidas", "Puma"]
},
price: {
type: 'number',
minimum: 0
},
size: {
type: 'number',
minimum: 35,
maximum: 46
}
}
result = ActiveGenie::DataExtractor.call(
text,
schema,
config: { provider_name: :openai, model: 'gpt-4.1-mini' } # optional
)
# => {
# brand: "Nike",
# brand_explanation: "Brand name found at start of text",
# price: 199.99,
# price_explanation: "Price found in USD format at end",
# size: 42,
# size_explanation: "Size explicitly stated in the middle"
# }
For full documentation, visit activegenie.ai.
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the Apache License 2.0 License - see the LICENSE file for details.
FAQs
Unknown package
We found that active_genie demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.