We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
client = HttpClient( base_url="https://api.wauldo.com", api_key="YOUR_KEY", timeout=120, headers={"X-Custom": "value"}, )
guard(text, source_context, mode)
rag_upload(content, filename)
upload_file(file_path, title, tags)
rag_query(query, top_k)
rag_ask(question, text)
chat_simple(model, message)
chat_stream(request)
list_models()
from wauldo import MockHttpClient mock = MockHttpClient() mock.guard("60 days", "14 days") # rejected (numerical mismatch) mock.guard("Paris", "Paris") # verified mock.rag_upload("text", "f.txt") # mock doc_id mock.rag_query("question") # mock answer