π HOW NEURALAI SEEK WORKS
- Prompt analysis β AI understands the complexity of the request
- Web search β Performs searches on Google and authoritative sources
- Source synthesis β Combines information from 5-15 sites
- Source citation β Every response includes links to original sources
seek_speedQuick response, simple questions
Sources3-5 sources
Time~5-10 sec
Cost20 tokens
seek_normalBalanced standard search
Sources5-8 sources
Time~10-20 sec
Cost40 tokens
seek_largeDeep research, complete reports
Sources8-15 sources
Time~20-40 sec
Cost80 tokens
π‘ WHEN TO USE THE MODES
- seek_speed: "What time is it in Tokyo?", "Who is the US president?" (simple factual questions)
- seek_normal: "Best Italian restaurants in London", "How to learn Python in 3 months" (practical searches)
- seek_large: "Impact of AI on the job market 2025-2030", "Comparative analysis of renewable energy" (in-depth reports)
Example: Automatic search (recommended)
javascript
// The Orchestrator automatically decides the seek mode based on the prompt
const response = await fetch("https://app.neuralaiweb.com/functions/neuralaiPublicApi", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({Example: Force specific mode
javascript
// Force Deep Research for a complete report
const response = await fetch("https://app.neuralaiweb.com/functions/neuralaiPublicApi", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({β NEURALAI SEEK ADVANTAGES
- Verified sources β Only authoritative and reliable sites
- Up-to-date β Real-time information, not frozen at model training
- Transparent β Every statement is linked to the original source
- Adaptive β The AI automatically chooses the optimal search depth