Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare framework for PyPI release #41

Merged
merged 3 commits into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
- `Чат поддержки <https://t.me/protollm_helpdesk>`_

Статьи о решениях, основанных на ProtoLLM:
========================================
==========================================
- Zakharov K. et al. Forecasting Population Migration in Small Settlements Using Generative Models under Conditions of Data Scarcity //Smart Cities. – 2024. – Т. 7. – №. 5. – С. 2495-2513.
- Kovalchuk M. A. et al. SemConvTree: Semantic Convolutional Quadtrees for Multi-Scale Event Detection in Smart City //Smart Cities. – 2024. – Т. 7. – №. 5. – С. 2763-2780.
- Kalyuzhnaya A. et al. LLM Agents for Smart City Management: Enhancing Decision Support through Multi-Agent AI Systems - 2024 - Under Review
Expand Down
22 changes: 11 additions & 11 deletions README_en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ Intro
Proto LLM features
==================
- Rapid prototyping of information retrieval systems based on LLM using RAG:
Implementations of architectural patterns for interacting with different databases and web service interfaces;
Methods for optimising RAG pipelines to eliminate redundancy.
Implementations of architectural patterns for interacting with different databases and web service interfaces;
Methods for optimising RAG pipelines to eliminate redundancy.

- Development and integration of applications with LLM with connection of external services and models through plugin system:
Integration with AutoML solutions for predictive tasks;
Providing structured output generation and validation;
Integration with AutoML solutions for predictive tasks;
Providing structured output generation and validation;

- Implementation of ensemble methods and multi-agent approaches to improve the efficiency of LLMs:
Possibility of combining arbitrary LLMs into ensembles to improve generation quality, automatic selection of ensemble composition;
Work with model-agents and ensemble pipelines;
Possibility of combining arbitrary LLMs into ensembles to improve generation quality, automatic selection of ensemble composition;
Work with model-agents and ensemble pipelines;

- Generation of complex synthetic data for further training and improvement of LLM:
Generating examples from existing models and data sets;
Evolutionary optimisation to increase the diversity of examples; Integration with Label Studio;
Generating examples from existing models and data sets;
Evolutionary optimisation to increase the diversity of examples; Integration with Label Studio;

- Providing interoperability with various LLM providers:
Support for native models (GigaChat, YandexGPT, vsegpt, etc.).
Interaction with open-source models deployed locally.
Support for native models (GigaChat, YandexGPT, vsegpt, etc.).
Interaction with open-source models deployed locally.


Installation
Expand Down Expand Up @@ -106,7 +106,7 @@ Contacts
- `Helpdesk chat <https://t.me/protollm_helpdesk>`_

Papers about ProtoLLM-based solutions:
=====================================
======================================
- Zakharov K. et al. Forecasting Population Migration in Small Settlements Using Generative Models under Conditions of Data Scarcity //Smart Cities. – 2024. – Т. 7. – №. 5. – С. 2495-2513.
- Kovalchuk M. A. et al. SemConvTree: Semantic Convolutional Quadtrees for Multi-Scale Event Detection in Smart City //Smart Cities. – 2024. – Т. 7. – №. 5. – С. 2763-2780.
- Kalyuzhnaya A. et al. LLM Agents for Smart City Management: Enhancing Decision Support through Multi-Agent AI Systems - 2024 - Under Review
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.poetry]
readme = "README_en.rst"
name = "ProtoLLM"
version = "0.1.0"
description = ""
authors = ["aimclub"]
readme = "README.rst"


[tool.poetry.dependencies]
Expand Down
Loading