A lightweight orchestration framework for LLM agents, no abstractions you don’t need, no bloated APIs, just clean coordination logic that works.
Project description

No abstractions. No black boxes. Just Your Logic
Orkes is a Python library for building, coordinating, and observing any complex workflow that can be represented as a graph. While it is well-suited for building LLM-powered agentic systems, its core focus is on providing a flexible and intuitive graph-based framework with an emphasis on explicit control flow, transparent logic, and comprehensive traceability.
Getting Started
You can install the latest stable version of the Orkes using pip:
pip install orkes
Here's a simple example of how to build and run a graph with Orkes:
from orkes.graph.core import OrkesGraph
from typing import TypedDict, List
class SearchState(TypedDict):
user_query: str
search_queries: List[str]
current_index: int
raw_results: List[str]
is_finished: bool
def planner_node(state: SearchState):
# Mock planning logic
state['search_queries'] = [f"Query {i+1}" for i in range(3)]
state['current_index'] = 0
return state
def search_node(state: SearchState):
idx = state['current_index']
state['raw_results'].append(f"Result for {state['search_queries'][idx]}")
state['current_index'] += 1
state['is_finished'] = state['current_index'] >= len(state['search_queries'])
return state
def synthesis_node(state: SearchState):
print(f"Final Output: {', '.join(state['raw_results'])}")
return state
# Graph Construction
graph = OrkesGraph(SearchState)
graph.add_node('planner', planner_node)
graph.add_node('search', search_node)
graph.add_node('synthesizer', synthesis_node)
graph.add_edge(graph.START, 'planner')
graph.add_edge('planner', 'search')
graph.add_conditional_edge('search',
lambda s: 'end' if s['is_finished'] else 'loop',
{'loop': 'search', 'end': 'synthesizer'}
)
graph.add_edge('synthesizer', graph.END)
# Execution
runner = graph.compile()
runner.run({"user_query": "Orkes vs Temporal", "current_index": 0, "raw_results": []})
Here is an example how the orkes graph visualization will look like:
Core Concepts
At the heart of Orkes is a powerful graph-based architecture inspired by NetworkX. This design allows you to define your workflows as a graph of nodes and edges, where each node is a simple Python function.
- OrkesGraph: The main canvas for your workflow. It holds the nodes and edges that define your application's logic.
- Stateful Execution: A shared state object is passed between nodes, allowing for seamless data flow and management throughout the graph's execution.
- Graph Traceability: Orkes provides a built-in traceability and visualization system. When you run a graph, Orkes can generate a detailed execution trace that can be visualized as an interactive HTML file, making it easy to debug and understand your workflows.
Features
- Graph-based Architecture: Define complex workflows as a graph of nodes and edges, with support for conditional branching and loops.
- Traceability and Visualization: Generate interactive traces of your graph executions to visualize the flow of data and control.
- Pluggable LLM Integrations: A flexible and extensible system for integrating with LLMs, with out-of-the-box support for OpenAI, Anthropic's Claude, and Google's Gemini.
- Agent and Tool Support: Define custom tools and use them within your graph's nodes to interact with external APIs and services.
- Familiar Interface: The graph-based interface is inspired by
NetworkX, providing a familiar and powerful paradigm for those with experience in graph-based programming.
Benchmarks
Orkes has been benchmarked against LangGraph on simple graph structures, demonstrating performance advantages. In direct comparisons of graphs with identical nodes and edges, Orkes consistently outperforms LangGraph in both latency and memory utilization.
Key Findings
- For a simple graph comprising 5 nodes, Orkes exhibits up to a 5x increase in speed and consumes up to 2x less memory compared to LangGraph.
- When scaled to a 10-node graph, Orkes's performance gap widens, achieving up to 10x faster execution and using up to 3x less memory than LangGraph.
These preliminary results suggest Orkes can offer a more efficient and performant solution for developing and deploying LLM applications, particularly in scenarios involving graph-based workflows.
Results
Example Benchmark Results (values may vary):
Basic Benchmark Results
Statebloat Benchmark Results
To replicate or run the benchmarks, navigate to the tests/benchmarks directory and execute the run_all_benchmarks.py script:
python tests/benchmarks/run_all_benchmarks.py
Roadmap
| Feature | Description | Status |
|---|---|---|
| Boilerplate Agent | Provide a well-structured boilerplate for creating new agents to accelerate the development of agentic systems. | Planned |
| Parallel Graph Execution | Enhance the graph runner to support parallel execution of independent branches for improved performance. | Implemented |
| Tracer Web Platform | Develop a standalone web-based platform for visualizing and inspecting graph traces in real-time. | Progressing |
Documentation
For more details, visit our Documentation Page.
Contributing
Contributions are welcome! Please see the Contributing Guide for more information.
License
Orkes is licensed under the MIT License.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file orkes-0.1.3.3.tar.gz.
File metadata
- Download URL: orkes-0.1.3.3.tar.gz
- Upload date:
- Size: 39.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6cacc3afd0ffacdfcf244e59de054d2fabfb10e852bbcd20a49d593543c980d
|
|
| MD5 |
6d1b60f8570b8aace0c6b623282194d9
|
|
| BLAKE2b-256 |
8da99477ab08f7736a8a34f7096a317e67f16100963eeebaff95074a44935766
|
File details
Details for the file orkes-0.1.3.3-py3-none-any.whl.
File metadata
- Download URL: orkes-0.1.3.3-py3-none-any.whl
- Upload date:
- Size: 43.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0rc1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e241ce510c7b0603e8de221e2ecf336c757caab192fa4e2156105cdf3aacd4fa
|
|
| MD5 |
1f0a11a6c26bbd327ed85d677f6467ca
|
|
| BLAKE2b-256 |
fa6294bd85723f6f440afbd0d94116b7c02561da7348ce01a1f0159f9bc9e298
|