Elegant and lightweight, yet functionally comprehensive, the Flow framework is the best choice for large models.
Project description
English | 简体中文
FlowX
What's FlowX?
FlowX is a lightweight framework for building LLM applications. It offers an API interface similar to LangChain's LCEL, but with a more straightforward and simple internal implementation. Users familiar with LangChain can quickly get started with FlowX and extend or modify it as needed.
For example, FlowX implements the core functionality of LangChain's AgentExecutor in less than 300 lines of code. This is particularly beneficial for users who want to understand the underlying implementation of agents and make further optimizations.
FlowX is also very easy to use, as demonstrated by the following example of an Agent:
from core.tool import tool
from core.llm.openai.openai_llm import OpenAILLM
from core.agents.agent import Agent
llm = OpenAILLM(model="gpt-4o")
@tool
def multiply(left: int, right: int) -> int:
"""multiply"""
return left * right
agent = Agent(llm=llm, tools=[multiply])
agent.invoke("what's 1024*2024?")
Why do we need FlowX?
Although LangChain provides a powerful framework for building LLM applications, its complex design also brings several issues with deeper use.
LangChain's extensive use of abstraction results in highly complex code, making it difficult to understand and maintain. While it initially simplifies the development process, as the complexity of requirements increases, these abstractions gradually become obstacles to productivity. Additionally, these abstractions increase the learning and debugging burden, forcing development teams to spend significant time dealing with internal framework code rather than focusing on application functionality.
Especially in today's rapidly evolving AI and LLM landscape, where new concepts and methods emerge weekly, a framework that is easy to understand and iterate on quickly is crucial!
To address these issues, FlowX adopts a more concise design with more refined code implementation, balancing abstraction and simplicity by the use of necessary abstractions without being overly complex. Ultimately, FlowX provides the same functionality and similar interfaces as LangChain but with significantly reduced code and fewer abstract concepts. This makes it easy to understand and modify FlowX, allowing for quick experimentation or customized development.
The project is still under development, with more features to be added. Your valuable feedback is welcome!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flowx-0.1.0.tar.gz
.
File metadata
- Download URL: flowx-0.1.0.tar.gz
- Upload date:
- Size: 32.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 759024c69f36972eeeaa374531e625bb4e89ac966d0da054d95b5b20e1acf986 |
|
MD5 | 8000a6a09f96e2b4392ef51036a1a5fd |
|
BLAKE2b-256 | 5e563f67040e2ac80e6e2b9fea7715d3def40f3cde8dab1d2043968025b7a68d |
File details
Details for the file flowx-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: flowx-0.1.0-py3-none-any.whl
- Upload date:
- Size: 42.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79f22fc350a427e8f70f628e3413f72354f1f07a9f71159c84be3293453d0667 |
|
MD5 | 3ec84b5e4d26187ffed0c2ad405541fc |
|
BLAKE2b-256 | c90a32195ba0c3909760d3ce095ea20491750aabaf59e92b7bbb845c7974fc2c |