Code Monkey home page Code Monkey logo

cria_index's Introduction

Project Structure

Core

cria-index-core
├── README.md
├── VERSION
├── cria_index
│   └── core
│       ├── __init__.py
│       ├── __pycache__
│       │   └── __init__.cpython-310.pyc
│       ├── llama_packs
│       │   ├── __init__.py
│       │   └── base.py
│       ├── llms
│       │   ├── __init__.py
│       │   ├── __pycache__
│       │   │   ├── __init__.cpython-310.pyc
│       │   │   └── base.cpython-310.pyc
│       │   └── base.py
│       ├── readers
│       │   ├── __init__.py
│       │   └── base.py
│       ├── tools
│       │   ├── __init__.py
│       │   └── base.py
│       └── vector_stores
│           ├── __init__.py
│           ├── __pycache__
│           │   ├── __init__.cpython-310.pyc
│           │   └── base.cpython-310.pyc
│           └── base.py
├── dist
│   ├── cria_core-0.1.0-py3-none-any.whl
│   ├── cria_core-0.1.0.tar.gz
│   ├── cria_core-0.1.1-py3-none-any.whl
│   └── cria_core-0.1.1.tar.gz
├── poetry.lock
├── pyproject.toml
└── tests
    ├── __init__.py
    ├── __pycache__
    │   ├── __init__.cpython-310.pyc
    │   └── test_classes.cpython-310-pytest-7.4.4.pyc
    └── test_classes.py

Integrations

LLMs

├── cria-index-llms-huggingface
│   ├── README.md
│   ├── cria_index
│   │   └── llms
│   │       └── huggingface
│   │           ├── __init__.py
│   │           ├── __pycache__
│   │           │   ├── __init__.cpython-310.pyc
│   │           │   └── base.cpython-310.pyc
│   │           └── base.py
│   ├── dist
│   │   ├── cria_llms_huggingface-0.1.0-py3-none-any.whl
│   │   └── cria_llms_huggingface-0.1.0.tar.gz
│   ├── examples
│   │   └── HuggingFaceLLM.ipynb
│   ├── poetry.lock
│   ├── pyproject.toml
│   └── tests
│       ├── __init__.py
│       ├── __pycache__
│       │   ├── __init__.cpython-310.pyc
│       │   └── test_classes.cpython-310-pytest-7.4.4.pyc
│       └── test_classes.py
└── cria-index-llms-openai
    ├── README.md
    ├── cria_index
    │   └── llms
    │       └── openai
    │           ├── __init__.py
    │           ├── __pycache__
    │           │   ├── __init__.cpython-310.pyc
    │           │   └── base.cpython-310.pyc
    │           └── base.py
    ├── dist
    │   ├── cria_llms_openai-0.1.0-py3-none-any.whl
    │   └── cria_llms_openai-0.1.0.tar.gz
    ├── examples
    │   └── OpenAI.ipynb
    ├── poetry.lock
    ├── pyproject.toml
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   ├── __init__.cpython-310.pyc
        │   └── test_classes.cpython-310-pytest-7.4.4.pyc
        └── test_classes.py

Vector Stores

├── cria-index-vector-stores-elasticsearch
│   ├── README.md
│   ├── cria_index
│   │   └── vector_stores
│   │       └── elasticsearch
│   │           ├── __init__.py
│   │           ├── __pycache__
│   │           │   ├── __init__.cpython-310.pyc
│   │           │   └── base.cpython-310.pyc
│   │           └── base.py
│   ├── dist
│   │   ├── cria_vector_stores_elasticsearch-0.1.0-py3-none-any.whl
│   │   └── cria_vector_stores_elasticsearch-0.1.0.tar.gz
│   ├── examples
│   │   └── ElasticSearchVectorStore.ipynb
│   ├── poetry.lock
│   ├── pyproject.toml
│   └── tests
│       ├── __init__.py
│       └── test_classes.py
└── cria-index-vector-stores-qdrant
    ├── README.md
    ├── cria_index
    │   └── vector_stores
    │       └── qdrant
    │           ├── __init__.py
    │           ├── __pycache__
    │           │   ├── __init__.cpython-310.pyc
    │           │   └── base.cpython-310.pyc
    │           └── base.py
    ├── dist
    │   ├── cria_vector_stores_qdrant-0.1.0-py3-none-any.whl
    │   └── cria_vector_stores_qdrant-0.1.0.tar.gz
    ├── examples
    │   └── QdrantVectorStore.ipynb
    ├── poetry.lock
    ├── pyproject.toml
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   ├── __init__.cpython-310.pyc
        │   └── test_classes.cpython-310-pytest-7.4.4.pyc
        └── test_classes.py

Plugins

Loaders

├── cria-index-plugin-loader-gmail
│   ├── README.md
│   ├── cria_index
│   │   └── plugins
│   │       └── loaders
│   │           └── gmail
│   │               ├── __init__.py
│   │               ├── __pycache__
│   │               │   ├── __init__.cpython-310.pyc
│   │               │   └── base.cpython-310.pyc
│   │               └── base.py
│   ├── dist
│   │   ├── cria_plugin_loader_gmail-0.1.0-py3-none-any.whl
│   │   └── cria_plugin_loader_gmail-0.1.0.tar.gz
│   ├── poetry.lock
│   ├── pyproject.toml
│   └── tests
│       ├── __init__.py
│       ├── __pycache__
│       │   ├── __init__.cpython-310.pyc
│       │   └── test_classes.cpython-310-pytest-7.4.4.pyc
│       └── test_classes.py
└── cria-index-plugin-loader-notion
    ├── README.md
    ├── cria_index
    │   └── plugins
    │       └── loaders
    │           └── notion
    │               ├── __init__.py
    │               ├── __pycache__
    │               │   ├── __init__.cpython-310.pyc
    │               │   └── base.cpython-310.pyc
    │               └── base.py
    ├── dist
    │   ├── cria_plugin_loader_notion-0.1.0-py3-none-any.whl
    │   └── cria_plugin_loader_notion-0.1.0.tar.gz
    ├── poetry.lock
    ├── pyproject.toml
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   ├── __init__.cpython-310.pyc
        │   └── test_classes.cpython-310-pytest-7.4.4.pyc
        └── test_classes.py

Tools

├── cria-index-plugin-tool-arxiv
│   ├── README.md
│   ├── cria_index
│   │   └── plugins
│   │       └── tools
│   │           └── arxiv
│   │               ├── __init__.py
│   │               ├── __pycache__
│   │               │   ├── __init__.cpython-310.pyc
│   │               │   └── base.cpython-310.pyc
│   │               └── base.py
│   ├── dist
│   │   ├── cria_index_tool_plugin_arxiv-0.1.0-py3-none-any.whl
│   │   └── cria_index_tool_plugin_arxiv-0.1.0.tar.gz
│   ├── poetry.lock
│   ├── pyproject.toml
│   └── tests
│       ├── __init__.py
│       ├── __pycache__
│       │   ├── __init__.cpython-310.pyc
│       │   └── test_classes.cpython-310-pytest-7.4.4.pyc
│       └── test_classes.py
└── cria-index-plugin-tool-gmail
    ├── README.md
    ├── cria_index
    │   └── plugins
    │       └── tools
    │           └── gmail
    │               ├── __init__.py
    │               ├── __pycache__
    │               │   ├── __init__.cpython-310.pyc
    │               │   └── base.cpython-310.pyc
    │               └── base.py
    ├── dist
    │   ├── cria_index_tool_plugin_gmail-0.1.0-py3-none-any.whl
    │   └── cria_index_tool_plugin_gmail-0.1.0.tar.gz
    ├── poetry.lock
    ├── pyproject.toml
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   ├── __init__.cpython-310.pyc
        │   └── test_classes.cpython-310-pytest-7.4.4.pyc
        └── test_classes.py

Packs

├── cria-index-plugin-pack-rag-evaluator
│   ├── README.md
│   ├── cria_index
│   │   └── plugins
│   │       └── packs
│   │           └── rag_evaluator
│   │               ├── __init__.py
│   │               ├── __pycache__
│   │               │   ├── __init__.cpython-310.pyc
│   │               │   └── base.cpython-310.pyc
│   │               └── base.py
│   ├── dist
│   │   ├── cria_plugin_pack_rag_evaluator-0.1.0-py3-none-any.whl
│   │   └── cria_plugin_pack_rag_evaluator-0.1.0.tar.gz
│   ├── poetry.lock
│   ├── pyproject.toml
│   └── tests
│       ├── __init__.py
│       ├── __pycache__
│       │   ├── __init__.cpython-310.pyc
│       │   └── test_classes.cpython-310-pytest-7.4.4.pyc
│       └── test_classes.py
└── cria-index-plugin-pack-resume-screener
    ├── README.md
    ├── cria_index
    │   └── plugins
    │       └── packs
    │           └── resume_screener
    │               ├── __init__.py
    │               └── base.py
    ├── dist
    │   ├── cria_index_plugin_pack_resume_screener-0.1.0-py3-none-any.whl
    │   └── cria_index_plugin_pack_resume_screener-0.1.0.tar.gz
    ├── poetry.lock
    ├── pyproject.toml
    └── tests
        ├── __init__.py
        └── test_classes.py

Experimental

├── README.md
├── cria_index
│   └── experimental
│       ├── __init__.py
│       └── experimental_feature.py
├── dist
│   ├── cria_index_experimental-0.1.0-py3-none-any.whl
│   └── cria_index_experimental-0.1.0.tar.gz
├── poetry.lock
├── pyproject.toml
└── tests
    └── __init__.py

cria_index's People

Contributors

nerdai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.