Railtracks is a Python framework for building agentic systems. Agent behavior, tools, and multi-step flows are defined entirely in standard Python using the control flow and abstractions you already know.
import railtracks as rt
# Define a tool (just a function!)
def get_weather(location: str) -> str:
return f"It's sunny in {location}!"
# Create an agent with tools
agent = rt.agent_node(
"Weather Assistant",
tool_nodes=(rt.function_node(get_weather)),
llm=rt.llm.OpenAILLM("gpt-4o"),
system_message="You help users with weather information."
)
# Run it
flow = rt.Flow(name="Weather Flow", entry_point=agent)
result = flow.invoke("What's the weather in Paris?")
# or `await flow.ainvoke("What's the weather in Paris?)` in an async context
print(result.text) # "Based on the current data, it's sunny in Paris!"Execution order, branching, and looping are expressed using standard Python control flow.
# Write agents like regular functions
@rt.function_node
def my_tool(text: str) -> str:
return process(text)
|
# Any function becomes a tool
agent = rt.agent_node(
"Assistant",
tool_nodes=[my_tool, api_call]
)
|
# Native Async support
result = await rt.call(agent, query)
|
Railtracks includes a visualizer for inspecting agent runs and evaluations in real-time, run completely locally with no signups required. See the Observability documentation for setup and usage. |
Installation
pip install railtracks 'railtracks[cli]'Your First Agent
import railtracks as rt
# 1. Create tools (just functions with decorators!)
@rt.function_node
def count_characters(text: str, character: str) -> int:
"""Count occurrences of a character in text."""
return text.count(character)
@rt.function_node
def word_count(text: str) -> int:
"""Count words in text."""
return len(text.split())
# 2. Build an agent with tools
text_analyzer = rt.agent_node(
"Text Analyzer",
tool_nodes=(count_characters, word_count),
llm=rt.llm.OpenAILLM("gpt-4o"),
system_message="You analyze text using the available tools."
)
# 3. Use it to solve the classic "How many r's in strawberry?" problem
text_flow = rt.Flow(
name="Text Analysis Flow"
entry_point=text_analyzer
)
text_flow.invoke("How many 'r's are in 'strawberry'?")Railtracks integrates with major model providers through a unified interface:
# OpenAI
rt.llm.OpenAILLM("gpt-5")
# Anthropic
rt.llm.AnthropicLLM("claude-4-6-sonnet")
# Local models
rt.llm.OllamaLLM("llama3")Works with OpenAI, Anthropic, Google, Azure, and more. See the full provider list.
Railtracks is developed in the open. Contributions, bug reports, and feature requests are welcome via GitHub Issues.
Licensed under MIT · Made by the Railtracks team