lionagi 0.3.7__py3-none-any.whl → 0.3.8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- lionagi/core/director/operations/select.py +2 -92
- lionagi/core/rule/choice.py +2 -2
- lionagi/operations/__init__.py +6 -0
- lionagi/operations/brainstorm.py +87 -0
- lionagi/operations/config.py +6 -0
- lionagi/operations/rank.py +102 -0
- lionagi/operations/score.py +144 -0
- lionagi/operations/select.py +141 -0
- lionagi/version.py +1 -1
- lionagi-0.3.8.dist-info/METADATA +241 -0
- {lionagi-0.3.7.dist-info → lionagi-0.3.8.dist-info}/RECORD +13 -30
- lionagi/core/director/models/__init__.py +0 -13
- lionagi/core/director/models/action_model.py +0 -61
- lionagi/core/director/models/brainstorm_model.py +0 -42
- lionagi/core/director/models/plan_model.py +0 -51
- lionagi/core/director/models/reason_model.py +0 -63
- lionagi/core/director/models/step_model.py +0 -65
- lionagi/core/operations/__init__.py +0 -0
- lionagi/core/operations/chat/__init__.py +0 -0
- lionagi/core/operations/direct/__init__.py +0 -0
- lionagi/core/operative/__init__.py +0 -0
- lionagi/operations/brainstorm/__init__.py +0 -0
- lionagi/operations/chat/__init__.py +0 -0
- lionagi/operations/models/__init__.py +0 -0
- lionagi/operations/plan/__init__.py +0 -0
- lionagi/operations/plan/base.py +0 -0
- lionagi/operations/query/__init__.py +0 -0
- lionagi/operations/rank/__init__.py +0 -0
- lionagi/operations/react/__init__.py +0 -0
- lionagi/operations/route/__init__.py +0 -0
- lionagi/operations/score/__init__.py +0 -0
- lionagi/operations/select/__init__.py +0 -0
- lionagi/operations/strategize/__init__.py +0 -0
- lionagi-0.3.7.dist-info/METADATA +0 -70
- {lionagi-0.3.7.dist-info → lionagi-0.3.8.dist-info}/LICENSE +0 -0
- {lionagi-0.3.7.dist-info → lionagi-0.3.8.dist-info}/WHEEL +0 -0
lionagi-0.3.7.dist-info/METADATA
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: lionagi
|
3
|
-
Version: 0.3.7
|
4
|
-
Summary: Towards automated general intelligence.
|
5
|
-
Author: HaiyangLi
|
6
|
-
Author-email: quantocean.li@gmail.com
|
7
|
-
Requires-Python: >=3.10,<4.0
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
9
|
-
Classifier: Programming Language :: Python :: 3.10
|
10
|
-
Classifier: Programming Language :: Python :: 3.11
|
11
|
-
Classifier: Programming Language :: Python :: 3.12
|
12
|
-
Requires-Dist: aiocache (>=0.12.0,<0.13.0)
|
13
|
-
Requires-Dist: ipython (>=8.0.0,<9.0.0)
|
14
|
-
Requires-Dist: lion-core (>=0.4.0,<0.5.0)
|
15
|
-
Requires-Dist: lion-openai (>=0.1.5,<0.2.0)
|
16
|
-
Requires-Dist: lionfuncs (>=1.2.1,<2.0.0)
|
17
|
-
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
18
|
-
Description-Content-Type: text/markdown
|
19
|
-
|
20
|
-
![PyPI - Version](https://img.shields.io/pypi/v/lionagi?labelColor=233476aa&color=231fc935) ![PyPI - Downloads](https://img.shields.io/pypi/dm/lionagi?color=blue)
|
21
|
-
|
22
|
-
|
23
|
-
[PyPI](https://pypi.org/project/lionagi/) | [Documentation](https://ocean-lion.com/Welcome) | [Discord](https://discord.gg/aqSJ2v46vu) | [Roadmap](https://trello.com/b/3seomsrI/lionagi)
|
24
|
-
|
25
|
-
|
26
|
-
# Language InterOperable Network - LION
|
27
|
-
### an AGentic Intelligence Operating System
|
28
|
-
|
29
|
-
```
|
30
|
-
pip install lionagi
|
31
|
-
```
|
32
|
-
or
|
33
|
-
```
|
34
|
-
poetry add lionagi
|
35
|
-
```
|
36
|
-
**Powerful Intelligent Workflow Automation**
|
37
|
-
|
38
|
-
lionagi is an intelligent agentic workflow automation framework. It introduces advanced ML models into any existing workflows and data infrastructure.
|
39
|
-
|
40
|
-
|
41
|
-
### Why Automating Workflows?
|
42
|
-
|
43
|
-
Intelligent AI models such as [Large Language Model (LLM)](https://en.wikipedia.org/wiki/Large_language_model), introduced new possibilities of human-computer interaction. LLMs is drawing a lot of attention worldwide due to its “one model fits all”, and incredible performance. One way of using LLM is to use as search engine, however, this usage is complicated by the fact that LLMs [hallucinate](https://arxiv.org/abs/2311.05232).
|
44
|
-
|
45
|
-
What goes inside of a LLM is more akin to a [black-box](https://pauldeepakraj-r.medium.com/demystifying-the-black-box-a-deep-dive-into-llm-interpretability-971524966fdf), lacking interpretability, meaning we don’t know how it reaches certain answer or conclusion, thus we cannot fully trust/rely the output from such a system. Another approach of using LLM is to treat them as [intelligent agent](https://arxiv.org/html/2401.03428v1), that are equipped with various tools and data sources. A workflow conducted by such an intelligent agent have clear steps, and we can specify, observe, evaluate and optimize the logic for each decision that the `agent` made to perform actions. This approach, though we still cannot pinpoint how LLM output what it outputs, but the flow itself is **explainable**.
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
### Community
|
50
|
-
|
51
|
-
We encourage contributions to LionAGI and invite you to enrich its features and capabilities. Engage with us and other community members [Join Our Discord](https://discord.gg/aqSJ2v46vu)
|
52
|
-
|
53
|
-
### Citation
|
54
|
-
|
55
|
-
When referencing LionAGI in your projects or research, please cite:
|
56
|
-
|
57
|
-
```bibtex
|
58
|
-
@software{Li_LionAGI_2023,
|
59
|
-
author = {Haiyang Li},
|
60
|
-
month = {12},
|
61
|
-
year = {2023},
|
62
|
-
title = {LionAGI: Towards Automated General Intelligence},
|
63
|
-
url = {https://github.com/lion-agi/lionagi},
|
64
|
-
}
|
65
|
-
```
|
66
|
-
|
67
|
-
|
68
|
-
### Requirements
|
69
|
-
Python 3.10 or higher.
|
70
|
-
|
File without changes
|
File without changes
|