Python framework for AI agents logic-only coding with streaming, tool calls, and multi-LLM provider support (Venice.ai, DeepSeek, OpenRouter).
Python framework for AI agents logic-only coding with streaming, tool calls, and multi-LLM provider support.
Only the "fairly stable" versions are published on PyPi, but to get the latest experimental versions, clone this repository and install it !
pip install open-taranis --upgrade
For package on PyPi
or
git clone https://github.com/SyntaxError4Life/open-taranis && cd open-taranis/ && pip install .
For last version
import open_taranis as T
client = T.clients.openrouter() # API_KEY in env_var
messages = [
T.create_user_prompt("Tell me about yourself")
]
stream = T.clients.openrouter_request(
client=client,
messages=messages,
model="nvidia/nemotron-3-nano-30b-a3b:free",
)
print("assistant : ",end="")
for token, tool, tool_bool in T.handle_streaming(stream) :
if token :
print(token, end="")
</details>
<details><summary><b>Make a simple agent with a context windows on the 6 last turns</b></summary>
import open_taranis as T
class Agent(T.agent_base):
def __init__(self):
super().__init__()
self.client = T.clients.openrouter()
self._system_prompt = [T.create_system_prompt(
"You're an agent nammed **Taranis** !"
)]
def create_stream(self):
return T.clients.openrouter_request(
client=self.client,
messages=self._system_prompt+self.messages,
model="nvidia/nemotron-3-nano-30b-a3b:free"
)
def manage_messages(self):
self.messages = self.messages[-12:] # Each turn have 1 user and 1 assistant
My_agent = Agent()
while True :
prompt = input("user : ")
print("\n\nagent : ", end="")
for t in My_agent(prompt):
print(t, end="", flush=True)
print("\n\n","="*60,"\n")
</details>
<details><summary><b>To create a simple display using gradio aOpen-source AI coding agent for the terminal. Claude Code-grade accuracy with smart model routing — uses the right AI model for each task, cutting costs 10x. Supports Claude, GPT, Gemini, DeepSeek & more.
A general-purpose Python framework for building LLM agents and multi-agent systems. "Four lines of code, an agent with memory."
Ultimate LLM API Integration Cookbook 2026 for Cursor & AI Agents
Ultimate Multi-Agent OS for Autonomous AI NPCs 2026
PrivateAgent is an open-source Android automation agent built with Flutter. It utilizes the DeepSeek API and native Android Accessibility Services to interpret screen layouts and execute multi-step tasks across any installed application via natural language commands.
把一队分工 Agent 织成一条写小说的流水线,做成桌面客户端;写作指纹让它越写越像你(BYO DeepSeek key,纯本地)。
Workflows from the Neura Market marketplace related to this DeepSeek resource