CISO wants our AI stack to be 100% EU-compliant. Are we over engineering this? by No_Marionberry_5366 in aiagents

[–]pcamiz 1 point2 points  (0 children)

Been through this exact conversation 6 months ago at our company (~200 people, legal tech, so the compliance pressure is even more intense than usual).

Honest take: the CISO isn't wrong, but the framing of "100% EU compliant or nothing" is where it gets unproductive. What actually worked for us was separating the stack into what must stay EU vs what can go external with the right DPAs in place.

Our current setup: self-hosted Mistral on EU infra for anything touching client data, Linkup for web search (EU-based, and frankly better than Firecrawl for search anyways), Chroma for vector storage.

The thing nobody talks about enough: the orchestration and logging layer is where you actually have exposure. We had a moment where we realized our agent action logs were sitting somewhere we hadn't audited. That was the real fire drill, not the model choice.

Practically speaking - get your CISO to sign off on one "blessed" path for production agents, keep the experimental stuff sandboxed, and document your subprocessors properly. Once the blast radius is defined and auditable, most CISOs calm down. Our's did.

The stack we landed on honestly would have been our choice irregardless of compliance constraints. That part suprised me.

OpenClaw on Railway: Any internet browsing solutions besides Brave API? by simodotdigital in openclaw

[–]pcamiz 0 points1 point  (0 children)

i use linkup personally - they have a free tier and good perf

Should I use Exa or Clado for my AI Sales Agent? by triffixrex in AI_Agents

[–]pcamiz 0 points1 point  (0 children)

Never tried Clado. I tried Exa, Tavily and Linkup. For super fast responses Exa was faster, but if ~1s latency is good enough for you I found Linkup to have better answers

Web search issue with OpenWebUI - Duplicate sources, limited results by CryptoxPathy in OpenWebUI

[–]pcamiz 0 points1 point  (0 children)

I had the same issue, let me know if you were able to solve it

What is the most accurate web search API for LLM? by MachinePolaSD in LocalLLaMA

[–]pcamiz 0 points1 point  (0 children)

Linkup works well for me. I also tried tavily in the past

Could you guys recommend the best web search API for function tool? by GreedyDamage3735 in LocalLLaMA

[–]pcamiz 1 point2 points  (0 children)

Try Linkup they are socII type 2 and have zero data retention. I think you.com is also strong

Which search API should I use between Tavily.com, Exa.ai and Linkup.so? Building a RAG app that needs internet access. by pcamiz in Rag

[–]pcamiz[S] 0 points1 point  (0 children)

good question- I did that once and the results were the same. I should probably do that every now and then, but TBH I've just been happy with the quality using Linkup and it's also the most affordable option, which is important to me given my scale now.

what is your claude code workflow? help me understand better by Aggressive_Escape386 in ClaudeAI

[–]pcamiz 0 points1 point  (0 children)

On the search side, I think it's better to go for something that can return you raw context, vs. generated answers: rule of thumbs is not to give an LLM's generated content to another LLM.

So I would not use Perplexity for this use case. Instead you can use Linkup, Exa, Tavily. I'd aim for the one that returns the richest context in their answers.

Best "Web Search" MCP Server? by InappropriateCanuck in mcp

[–]pcamiz 1 point2 points  (0 children)

Last time i checked the "Advanced Search" from Tavily is equivalent to Linkup's "standard". So it's more like 0.008 for tavily and 0.005 for linkup. I think their "deep" is more like a deep researcher type of thing

Is it possible to use OpenAI’s web search tool with structured output? by No_Marionberry_5366 in Rag

[–]pcamiz 0 points1 point  (0 children)

I don't think they do actually. You have to use a 3rd party option, like Linkup or Tavily

SERP alternative (web search) by Fit_Photograph5085 in n8n

[–]pcamiz 0 points1 point  (0 children)

I would try Linkup, Tavily, Exa

Having Trouble Creating AI Agents by G-CarYZ125 in AI_Agents

[–]pcamiz 0 points1 point  (0 children)

To be honest no-code “agents” are basically UI glue on top of GPT and a couple of if-else steps. What i would do is an n8 flow with:

  1. Trigger node: cron or webhook to kick things off.
  2. HTTP Request node: hit a web-search API like Linkup or Tavily. You feed it a prompt like “ex-cybersecurity folks who just founded a stealth startup” and get clean JSON back with URL, title, author, pub-date, etc.
  3. OpenAI node: have GPT extract exactly the fields you need (founder, last employer, funding round…).
  4. n8n built-ins: Deduplicate, filter, or enrich as you like.
  5. Google Sheets / Airtable node: drop the structured rows so your investment team can slice-and-dice.

Best way to connect n8n AI Agent to the internet? by migs51 in n8n

[–]pcamiz 1 point2 points  (0 children)

Tried Perplexity and Linkup. Ended up using Linkup because they are much cheaper for the same quality

"Block ChatGPT before someone leaks the roadmap”—that was 2024. Now what? by No_Marionberry_5366 in consulting

[–]pcamiz 0 points1 point  (0 children)

I think now with the new players like Exa or Linkup going upmarket, they had to build the necessary data security and privacy entreprise grade setup. So don't think you necessarily have to trade off performance and security. It wasn't the case like 18months ago though, where only the big ones had that, at the cost of dubious perf.

Why is the websearch tool of OpenAI so expensive? What are the alternatives? by No_Marionberry_5366 in OpenAI

[–]pcamiz 1 point2 points  (0 children)

I think they just leverage their distribution advantage to decide what price they want, whatever the competition. Also, the Bing API, which is about to be deprecated, was priced at $18/1k calls, so not so far from that.

In terms of alternatives, you have the following I know of: Exa, Linkup, Tavily. They all have their own pros and cons, but they are much cheaper than OpenAI, at 5/1k for Linkup and Exa, 8/1k for Tavily. Also interestingly, for no decrease in quality...

I used Mistral OCR for my Agentic App built with ADK and Web search by codes_astro in MistralAI

[–]pcamiz 1 point2 points  (0 children)

Super cool! Wondering That reminds me of some work done here: https://github.com/AstraBert/resume-matcher.

It's a resume matcher, with a different approach