To install TrustTest python package
uv add trusttest
# install all optional dependencies
uv add trusttest --all-extras
TrustTest uses
uv
for project dependency management. While
pip
is fully supported, we encourage using
uv
.
Learn more about
Optional Dependencies
TrustTest provides several optional dependencies to make the library as lightweight as possible. You can install based on your needs:
LLM Provider Integrations
uv add "trusttest[google]"
uv add "trusttest[openai]"
uv add "trusttest[deepseek]"
uv add "trusttest[anthropic]"
uv add "trusttest[ollama]"
RAG Integrations
uv add "trusttest[rag-azure]"
- Upstash Vector Integration
uv add "trusttest[rag-upstash]"
uv add "trusttest[rag-neo4j]"
You can also install multiple optional dependencies at once by combining them with commas:
uv add "trusttest[rag-azure,openai,anthropic]"