npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-tsi

v0.0.20

Published

Create LlamaIndex-powered T-Systems LLM apps with one command

Downloads

7

Readme

Create TSI

create-tsi is a generative AI RAG toolkit that generates AI Applications using LlamaIndex with low code.

AI Applications generated by create-tsi, use LLMs hosted by T-Systems on Open Telekom Cloud.

The purpose of create-tsi is to make the AI Application creation process easy, flexible and fast. With create-tsi you can generate bots, write agents and customize them for specific use cases.

Please Note

To get started with create-tsi, you need a T-Systems API key. You can request trial access via this form.

Once you have the key, just run

npx create-tsi@latest

to get started. Once your app is generated, read the generated README.md file to start the app.

What you'll get

  • A Next.js-powered front-end. The app is set up as a chat interface that can answer questions about your data (see below)
  • Python FastAPI backend: You’ll get a backend powered by the llama-index python package
  • The back-end has a single endpoint that allows you to send the state of your chat and receive additional responses

Using your data

Unless you selected to generate a simple chat, you can supply your own data and the app will index it and be able to answer questions on the data.

Your generated app will have a folder called data in the backend directory. The app will ingest any supported files you put in this directory.

Example

The simplest thing to do is run create-tsi in interactive mode:

npx create-tsi@latest
# or
npm create tsi@latest
# or
yarn create tsi
# or
pnpm create tsi@latest

You will be asked for the name of your project, along with other configuration options, something like this:

>> npm create-tsi@latest
✔ What is your project named? … my-app
✔ Would you like to generate a NextJS frontend for your FastAPI (Python) backend? … No / Yes
✔ Please provide your T-Systems API key (or reuse TSI_API_KEY env variable): …
✔ Which model would you like to use? › Mixtral-8x7B-Instruct-v0.1
✔ Which embedding model would you like to use? › paraphrase-multilingual-mpnet-base-v2
? Which data source would you like to use? › - Use arrow-keys. Return to submit.
   No data, just a simple chat
❯  Use an example PDF
   Use local files (.pdf, .doc, .docx, .xls, .xlsx, .csv)
   Use local folders
   Use website content (requires Chrome)
   Use data from a database (Mysql)

Code of Conduct

This project has adopted the Contributor Covenant in version 2.1 as our code of conduct. Please see the details in our CODE_OF_CONDUCT.md. All contributors must abide by the code of conduct.

By participating in this project, you agree to abide by its Code of Conduct at all times.

Licensing

This project follows the REUSE standard for software licensing.
Each file contains copyright and license information, and license texts can be found in the ./LICENSES folder. For more information visit https://reuse.software/.
You can find a guide for developers at https://telekom.github.io/reuse-template/.

To annotate your files with licensing information, run:

pipx run reuse annotate --copyright="Deutsche Telekom AG, LlamaIndex, Vercel, Inc." --license="MIT" --recursive --fallback-dot-license --skip-existing .

LlamaIndex Documentation

Inspired by and adapted from create-next-app