One search query is usually not enough for a reliable AI answer

A common RAG pattern is to send the user’s exact question to a search API, retrieve five results, and pass them to an LLM. It works for simple lookups but becomes unreliable when the question contains several claims or requires different types of evidence.

A better approach is to decompose the question before searching.

For example:

“Did Company X’s revenue grow because of higher prices or customer growth, and is that trend continuing?”

Instead of one broad query, generate smaller searches:

  • Company X latest revenue growth
  • Company X pricing changes
  • Company X customer count
  • Company X latest guidance
  • Company X investor relations earnings release

Then combine and deduplicate the results before reranking them:

queries = decompose(user_question)

results = []
for query in queries:
    results.extend(search_api(query, limit=5))

unique_results = deduplicate(results, key="canonical_url")
ranked = rerank(user_question, unique_results)
context = ranked[:8]

A few practical improvements:

  • Add a date filter for time-sensitive questions.
  • Search primary domains separately when authoritative evidence matters.
  • Deduplicate syndicated articles by content, not just URL.
  • Keep at least one result per sub-question before global reranking.
  • Make the final answer identify which claims lack supporting evidence.

This adds more API calls, but it usually produces better coverage and makes missing evidence easier to detect. It also works regardless of whether retrieval comes from Exa, Tavily, Brave, Serper, or another provider.

For people running search-backed agents, has query decomposition improved answer quality enough to justify the added latency and cost?

reddit.com
u/1smaelll — 25 days ago
▲ 5 r/UGC_forhire+2 crossposts

The best pitch method I’ve found: Pitch the "Missing Format"

I used to just email brands saying "Hey, I make UGC, here is my portfolio." It barely worked.

Then I started pitching the missing format.

I go to a brand's TikTok page and look at what they are missing. If they only post aesthetic, faceless videos... I email them and say: "I love your aesthetic content, but I noticed you don't have a human face talking directly to your customers. I can film a casual talking-head review to build trust."

If they only post talking videos, I pitch them faceless ASMR aesthetic videos.

Find the gap in their feed and pitch exactly that. My response rate doubled when I started doing this.

reddit.com
u/1smaelll — 26 days ago
▲ 51 r/TheSideShift+2 crossposts

Mobile car detailing is saturated. I detail trash cans instead.

Saw a post a while ago about power washing and wanted to share my unique twist. I tried to make a "mobile car detailing" business but it was ridiculous how competitive it was. This is a very similar concept, only I detail trash cans

During the summer, I go around to garbage bins in the city and pressure wash them. This gets rid of the nasty smell that builds up over the summer. I go door to door in nicer neighborhoods telling people I can clean their trash and recycling bins for $35.

It takes me all of 10 minutes to pressure wash them. Once I finish one, their neighbor will come out and ask me to clean theirs too. I made $210 in 2 hours today on Sunday. No competition, very little overhead.

u/1smaelll — 26 days ago
▲ 31 r/Artificials+2 crossposts

Dang IT

The joke hit a little too close back in 2022, a lot of people treated AI like a tool to save time on essays and small tasks. Now in 2026, I keep seeing it replace the kind of work people were training for writing, basic content, admin tasks, even some entry-level SEO and VA work.

What changed for me is that I stopped asking, “How do I use AI to do this faster?” and started asking, “What parts of this job still need a human judgment, taste, and trust?” That question feels a lot more important now than learning another shortcut.

How are you adapting to it are you leaning into AI tools, or trying to build skills that AI still struggles to replace?

u/1smaelll — 27 days ago
▲ 5 r/SellSideCareers+1 crossposts

tuning into the earnings call as a 0.0000087% owner of the company

Jokes aside, listening to earnings calls is a useful way for students to understand equity research beyond textbook valuation.

The prepared remarks show which metrics management wants investors to focus on, but the analyst Q&A is usually more revealing. You can hear which assumptions the Street is questioning, where management avoids giving a direct answer, and what could change future estimates.

A practical exercise is to read the latest earnings release first, write down three questions you would ask management, then listen to the call and compare them with the analysts’ questions.

For anyone working in equity research or capital markets, what do you pay closest attention to during an earnings call: guidance changes, management’s tone, analyst questions, or something else?

u/1smaelll — 27 days ago

An AI symptom checker study suggests asking better follow-up questions matters more than a single clever prompt

https://preview.redd.it/r4zq5ajsy3fh1.png?width=1254&format=png&auto=webp&s=1e394388750eadccd0d5b09450c1f3c948a0cea5

Google Research tested SymptomAI with 13,917 participants across five conversational strategies.

The interesting result wasn’t simply that the model generated differential diagnoses. Every agent-driven strategy that actively asked follow-up questions performed significantly better than the basic user-led chatbot condition.

Clinical reviewers ranked SymptomAI’s differential diagnosis as the best in 53.3% of evaluated cases. The researchers also found that respiratory-infection predictions aligned with changes in consenting participants’ Fitbit signals.

There are important limitations: clinicians reviewed fixed transcripts and couldn’t ask their own questions, participant diagnoses were self-reported afterward, and the system remains an exploratory research project, not a replacement for medical assessment.

My takeaway is broader than healthcare: an AI system’s interview and information-gathering process may matter as much as the underlying model.

Would you trust an AI more if it explained why each follow-up question was necessary?

reddit.com
u/1smaelll — 29 days ago

Stop treating every sell-side role as “investment banking with different hours”

A lot of students say they want to work in finance, then apply to investment banking, equity research, sales and trading, corporate banking, and capital markets without considering how different the actual jobs are.

A better starting point is to match the role with the type of work you enjoy:

  • Investment Banking: financial modeling, presentations, transaction execution, and managing long deal processes.
  • Equity Research: studying companies and industries, updating forecasts, writing reports, and defending a view.
  • Sales & Trading: following markets in real time, reacting quickly, communicating with clients, and managing risk.
  • Corporate Banking: analyzing credit, understanding cash flow and debt capacity, and building long-term client relationships.
  • Capital Markets: combining market awareness with transaction execution, especially around equity or debt issuance.

Interview preparation should reflect those differences too. An IB candidate may be tested heavily on accounting and valuation, while an ER candidate should be ready to pitch a stock. S&T interviews may focus more on markets, probability, and decision-making under pressure. Corporate banking candidates should understand credit risk and debt repayment.

Prestige is a weak reason to choose a path if the daily work does not fit you.

For people already working on the sell side, what part of your role did you misunderstand before joining, and what should students know before choosing between these paths?

reddit.com
u/1smaelll — 30 days ago

Gemini 3.6 Flash’s most interesting improvement might be doing less work

https://preview.redd.it/4e3bw06r8seh1.png?width=1254&format=png&auto=webp&s=775282f21825c1d2aca58778ef371bc6e9d3da0a

Google just released Gemini 3.6 Flash, but the part that caught my attention wasn’t another benchmark increase.

Google reports that it uses 17% fewer output tokens than 3.5 Flash and needs fewer reasoning steps and tool calls for multi-step workflows. That matters for agents because the real cost isn’t determined by token pricing alone, it also depends on how many loops, failed attempts, and tool calls are needed to complete the task.

The reported improvements include:

  • DeepSWE: 49% vs. 37% for 3.5 Flash
  • OSWorld-Verified: 83.0% vs. 78.4%
  • Output price reduced from $9 to $7.50 per million tokens
  • Input price remains $1.50 per million tokens

These are Google’s own reported results, so independent testing will be more useful than the launch benchmarks. Still, I like the shift toward measuring efficiency per completed task instead of only intelligence scores.

For people running coding or browser agents, would fewer tool calls meaningfully lower your costs, or are reliability and failed runs still the bigger problem?

reddit.com
u/1smaelll — 1 month ago

The most useful MCP setup I’ve found isn’t “fully autonomous”—it’s permission-aware

A lot of MCP demos connect Claude to several services and immediately allow the model to perform actions. The more practical pattern is to separate tools by risk level.

I’d divide an MCP server into three groups:

  • Read tools: search files, inspect issues, query logs, read documentation
  • Draft tools: prepare code changes, SQL queries, emails, or tickets without submitting them
  • Action tools: merge code, modify production data, send messages, or create external resources

Each action tool should require explicit confirmation and return a preview before doing anything irreversible.

A simplified tool definition might look like this:

{
  "name": "update_issue",
  "description": "Update an issue only after the user approves the preview",
  "inputSchema": {
    "type": "object",
    "properties": {
      "issue_id": { "type": "string" },
      "changes": { "type": "object" },
      "confirmed": { "type": "boolean", "default": false }
    },
    "required": ["issue_id", "changes"]
  }
}

The handler can return a preview when confirmed is false:

if not confirmed:
    return {
        "status": "approval_required",
        "preview": changes
    }

result = update_issue(issue_id, changes)
return {"status": "completed", "result": result}

This creates a safer workflow:

  1. Claude gathers context using read-only tools.
  2. It proposes an action and shows the exact changes.
  3. The user approves or edits the proposal.
  4. The MCP server performs the action and records the result.

I’d also log the tool name, arguments, user approval, timestamp, and response while redacting secrets. That makes failures much easier to debug than relying on the chat transcript alone.

The biggest improvement isn’t giving the agent more tools—it’s making tool boundaries predictable. How are people handling approval and permissions in their MCP setups: inside the server, in the client, or through a separate policy layer?

reddit.com
u/1smaelll — 1 month ago

Search API benchmarks should measure answer quality, not just result relevance

When comparing search APIs for an AI agent or RAG pipeline, it’s tempting to send the same queries to Exa, Tavily, Brave, Serper, or another provider and judge which results “look better.” That misses several problems that only appear after retrieval.

A more useful benchmark can score the complete pipeline:

  1. Coverage: Did it find a source containing the required fact?
  2. Freshness: Was the result current enough for the query?
  3. Source quality: Did it return primary sources or mostly aggregators?
  4. Extractability: Could the page content be retrieved and cleaned reliably?
  5. Duplication: How many results repeated the same underlying story?
  6. Citation accuracy: Did the final answer’s citations actually support its claims?
  7. Latency and cost: What was the total cost and response time after retries, crawling, and extraction?

I’d build a test set with different query types: current events, obscure technical questions, known-item searches, comparison queries, and questions requiring multiple sources. Each query should have expected facts and acceptable sources defined beforehand. The biggest lesson is that search and crawling should be evaluated together. A provider may return excellent URLs but still create a weak agent workflow if those pages are difficult to extract. Likewise, an API returning clean text may save enough downstream work to justify weaker raw rankings. For anyone benchmarking these tools, what metric has exposed the biggest difference in practice: source quality, freshness, extraction success, latency, or final answer accuracy?

reddit.com
u/1smaelll — 1 month ago

What I didn’t expect when I started looking for UGC campaigns on SideShift

I initially assumed the hardest part would be filming and editing. After using SideShift to look through UGC opportunities, I realized that choosing the right campaigns and following the brief closely take just as much attention. Not every campaign is a good fit. I now check the required deliverables, deadline, content style, revisions, usage rights, and payment before applying. A campaign can look simple until you notice that the brand expects several hooks, raw footage, edited versions, and multiple aspect ratios.

A few things I’ve learned:

  • Apply to campaigns that genuinely match your style instead of applying to everything.
  • Read the complete brief before planning the video.
  • Save copies of the brief and agreed deliverables.
  • Clarify usage rights and revision limits early.
  • Keep raw footage organized because brands may request different edits later.
  • Track applications and deadlines outside the platform so nothing gets missed.

What surprised me most was how much of UGC happens before and after filming: pitching, planning hooks, organizing files, handling feedback, and following up. For creators already booking campaigns through SideShift, what has helped you get selected more consistently? your portfolio, application message, niche, or previous campaign history?

reddit.com
u/1smaelll — 1 month ago

What should candidates compare besides compensation when evaluating buy-side offers?

Base salary and bonus are easy to compare, but they can hide major differences between buy-side roles. Two offers with similar first-year compensation may lead to completely different skills, responsibilities, and exit opportunities. Before accepting, candidates should probably ask about:

  • How investment ideas are sourced and evaluated
  • Whether juniors participate in investment committee discussions
  • How much time is spent modeling versus researching or monitoring investments
  • How performance and bonuses are measured
  • Typical promotion timelines and why people leave
  • Fundraising status, assets under management, and team stability
  • Whether carry or co-investment opportunities become available later
  • Who provides feedback and how often

The quality of mentorship and actual investment exposure may matter more early in a career than a slightly larger first-year bonus. At the same time, vague promises about “future carry” should not automatically outweigh guaranteed compensation. For those who have compared offers across PE, hedge funds, VC, asset management, or family offices: which questions revealed the most about the real quality of the role, and what do candidates often overlook?

reddit.com
u/1smaelll — 1 month ago

What actually separates strong buy-side interview answers from polished banking answers?

A common mistake in buy-side recruiting seems to be preparing for interviews as if they were just more technical investment banking interviews. Knowing valuation, accounting, and modeling matters, but those skills only explain how a transaction works. Buy-side interviewers also want to see whether you can form an independent view: why the investment is attractive, what could break the thesis, which assumptions matter most, and what would change your mind.

For anyone preparing, it may help to structure each investment discussion around:

  • The core thesis in two or three sentences
  • The market or company insight others may be missing
  • The main value drivers and key assumptions
  • Downside risks and realistic failure scenarios
  • Expected return and possible exit paths
  • Evidence that would invalidate the thesis

How does this differ across private equity, hedge funds, venture capital, and long-only asset management? Which part of the interview process best revealed whether a candidate could genuinely think like an investor?

reddit.com
u/1smaelll — 1 month ago

Are MCP servers actually improving your coding workflow, or just adding more setup?

I’ve been looking into MCP servers and how they let tools like Claude connect to GitHub, databases, documentation, browsers, and local files through a shared protocol. The idea sounds useful, instead of manually copying context between different tools, an AI agent can retrieve what it needs and take actions within one workflow. But I’m wondering how well this works in real development environments.

For those already using MCP:

  • Which integrations are genuinely useful?
  • How much time did setup and debugging take?
  • Do you trust agents with write access, or keep everything read-only?
  • Have MCP workflows replaced any scripts or tools you previously used?

I’d especially like to hear about real projects, security concerns, and situations where MCP created more complexity than value.

reddit.com
u/1smaelll — 1 month ago

Do brands actually care about follower count anymore, or is your portfolio doing most of the work?

I've been trying to understand what matters most when landing UGC deals. A lot of advice says you don't need a big audience because brands are buying the content, not your reach, but I still see creators mentioning their follower count in pitches.

For those who've landed paid UGC work, what made the biggest difference?

  • A polished portfolio?
  • Niche-specific examples?
  • Cold outreach volume?
  • Testimonials or past clients?

If you were starting from zero today with decent editing skills but no brand experience, what would you focus on first? I'd rather spend time on the things that actually move the needle than chase vanity metrics.

reddit.com
u/1smaelll — 1 month ago

The Biggest Recruiting Mistake I Keep Seeing in Buy-Side Interviews

One pattern I've noticed is that many candidates spend weeks memorizing technical questions but struggle when asked a simple follow-up such us "Why does this investment actually make sense?". Technical skills get you through the first round, but investors are ultimately evaluating your judgment. If you can't clearly explain why a company is attractive, what could go wrong, and what would change your mind, your model won't matter much.

A few things that helped me prepare:

  • Pick 2–3 companies and build a complete investment thesis from scratch.
  • Practice defending your thesis when someone disagrees with you.
  • Always identify the key risks and potential downside, not just the upside.
  • Be able to summarize your investment in under two minutes before diving into the details.

For those already working in PE, HF, VC, or AM, what's one interview question that separated the strongest candidates from everyone else? I'd love to hear different perspectives across strategies and experience levels.

reddit.com
u/1smaelll — 1 month ago