LightAgent 0.2.95__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lightagent-0.2.95 → lightagent-0.3.0}/LightAgent/la_core.py +9 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/PKG-INFO +1 -1
- {lightagent-0.2.95 → lightagent-0.3.0}/pyproject.toml +1 -1
- {lightagent-0.2.95 → lightagent-0.3.0}/LICENSE +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/LightAgent/__init__.py +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.de.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.es.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.fr.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.ja.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.ko.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.pt.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.ru.md +0 -0
- {lightagent-0.2.95 → lightagent-0.3.0}/README.zh-CN.md +0 -0
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
|
|
4
|
+
"""
|
|
5
|
+
作者: [weego/WXAI-Team]
|
|
6
|
+
版本: 0.3.0
|
|
7
|
+
最后更新: 2025-03-31
|
|
8
|
+
"""
|
|
9
|
+
|
|
1
10
|
import re
|
|
2
11
|
from typing import List, Dict, Any, Callable, Union, Iterable, Optional, Generator, AsyncGenerator
|
|
3
12
|
from copy import deepcopy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: LightAgent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: **LightAgent** is an extremely lightweight active Agentic Framework with memory (`mem0`), tools (`Tools`), and a Tree of Thought (`ToT`). It supports swarm-like multi-agent collaboration, automated tool generation, and agent assessment, with underlying model support for OpenAI, Zhipu ChatGLM, Baichuan Large Model, DeepSeek R1, Qwen series large models, and more. At the same time, LightAgent supports OpenAI streaming format API service output, seamlessly integrating with major mainstream chat frameworks. 🌟
|
|
5
5
|
Home-page: https://github.com/wxai-space/LightAgent
|
|
6
6
|
License: Apache 2.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "LightAgent"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "**LightAgent** is an extremely lightweight active Agentic Framework with memory (`mem0`), tools (`Tools`), and a Tree of Thought (`ToT`). It supports swarm-like multi-agent collaboration, automated tool generation, and agent assessment, with underlying model support for OpenAI, Zhipu ChatGLM, Baichuan Large Model, DeepSeek R1, Qwen series large models, and more. At the same time, LightAgent supports OpenAI streaming format API service output, seamlessly integrating with major mainstream chat frameworks. 🌟"
|
|
5
5
|
authors = ["caiweige <caiweige@qq.com>"]
|
|
6
6
|
license = "Apache 2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|