Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Easily assemble and serverlessly consume modular AI pipelines through secure Python APIs.
Sequentially assembling multiple AI models into a single pipeline can be painful and expensive. Consuming even a single model can often be draining. Doing so iteratively while prototyping is thus often unfeasible.
That's why we're here. Welcome to Krixik, where you can easily and swiftly experiment with, assemble, and consume modular production-ready AI pipelines through secure APIs.
Krixik is currently in beta, so access to the Krixik Python client is by request only.
If you'd like to participate as a beta tester, please complete this brief Google form.
Run the following command to install the Krixik Python client:
pip install krixik
Note: Python version 3.8 or higher is required.
To initialize your Krixik client session you will need your unique api_key
and api_url
secrets. Beta testers will receive their secrets from Krixik admin.
Instead of handling your secrets directly, we strongly recommend storing them in an .env
file and loading them via python-dotenv.
Once you have your secrets, initialize your session as follows:
from krixik import krixik
krixik.init(api_key=MY_API_KEY,
api_url=MY_API_URL)
...where MY_API_KEY
and MY_API_URL
are your account secrets.
If you've misplaced your secrets, please reach out to us directly.
Let's build a simple transcription pipeline consisting of a single transcribe
module. We can create the pipeline with a single line of code:
# create a simple transcription pipeline
pipeline = krixik.create_pipeline(name='my_transcribe-pipeline-1',
module_chain=["transcribe"])
The pipeline is ready! Now you can process audio files through it to generate transcripts of them.
pipeline.process(local_file_path='./path/to/my/mp3')
The outputs of this pipeline will be a timestamped transcript of your input audio file, a file_id
for the processed file, and a request_id
for the process itself.
Suppose you wanted to perform semantic (a.k.a. vector) search on transcribe
module output.
You would need to do the following after transcription:
Locally creating and testing this sequence of steps would be time consuming—orchestrating them in a secure production service even more so. And that's without trying to make the entire process serverless.
With Krixik, however, you can rapidly incorporate this functionality to your earlier pipeline by just adding a few modules. Syntax remains as above, so making the new pipeline still takes one line:
# create pipeline with the above-alluded-to modules
pipeline = krixik.create_pipeline(name='transcribe_vsearch',
module_chain=["transcribe",
"json-to-txt",
"parser",
"text-embedder",
"vector-db"])
Let's process a file through your new pipeline.
pipeline.process(local_file_path='./path/to/my/mp3')
Now that there is at least one file in the pipeline, you can use the file's file_id
—which was returned at the end of the above process—to perform semantic search on the associated transcript with the semantic_search
method:
pipeline.semantic_search(query="The text you wish to semantically search for goes here",
file_ids=['the_file_id_from_above'])
That's it! You have now transcribed a file, processed the transcript, performed semantic (vector) search on it, and can reuse the pipeline for as many files and queries as you like... all of it in a couple of minutes and with a few lines of code.
If you wish to follow along with the above example, or with any other of the score of examples we lay out in the documentation, then simply pull the entire Krixik Docs repo.
Doing so will provide you with every file you need, and code will already be configured to run in that directory structure.
The range of examples we've documented for you include pipelines to:
This is only the tip of the iceberg. Many more pipelines are currently possible (see here for more examples), and the Krixik module/model library will constantly be expanding—perhaps even to include modules and models of your own submission.
The above is just a peek at the power of Krixik. In addition to all possible parameterization (which we didn't even touch on), the Krixik toolbox is an ever-growing collection of modules and models for you to build with.
If you'd like to learn more, please visit Krixik Documentation, where we go into detail on:
Excited about Krixik graduating from beta? So are we! We're confident that this product is going to kick a monumental amount of ass, and we'd love to have you on board when it does.
If you wish to be in the loop about launch and other matters (we promise not to spam), please subscribe to occasional correspondence from us HERE.
Thanks for reading, and welcome to Krixik!
FAQs
Easily assemble and serverlessly consume modular AI pipelines through secure Python APIs.
We found that krixik 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.