FluxVector powers semantic search, RAG chatbots, recommendations, and more. One API, 8 signals, built-in embeddings. No OpenAI key needed.
# RAG chatbot in 5 lines from fluxvector import FluxVector fv = FluxVector(api_key="fv_live_...") result = fv.answer.create("hotel-faq", "What time is check-in?") print(result.answer) # "Check-in is at 3pm. [1]" print(result.confidence) # 0.92 print(result.sources[0]) # {index: 1, id: "faq-1", score: 0.95}