Portkey is an LLM gateway for routing and fallbacks. Fluiq instruments the SDK directly, giving you full agent trace trees, security scanning, and inline evals with zero proxy latency and no routing configuration.
Free tier · No credit card · 2-minute setup
How Fluiq and Portkey stack up across the features that matter in production.
~ = partial support · - = not available
We'll be straight. Here's where Portkey genuinely excels, and where Fluiq goes further.
Replace the Portkey client with the standard OpenAI client. If you need load-balancing across providers, those are typically handled at the infrastructure layer.
Before, Portkey
from portkey_ai import Portkey
portkey = Portkey(
api_key="pk_...",
virtual_key="openai-vk-...",
)
response = portkey.chat.completions.create(
messages=[{"role": "user", "content": query}],
model="gpt-4o",
)
result = response.choices[0].message.contentAfter, Fluiq
import fluiq
fluiq.instrument(api_key="fl_...")
# Use the standard OpenAI client, no gateway, no virtual keys
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
messages=[{"role": "user", "content": query}],
model="gpt-4o",
)
result = response.choices[0].message.contentFree tier. No credit card. Full observability, security, and evals on your first LLM call.
50,000 free traces / month · 1,000 evals / month · 14-day retention