Frequently Asked Questions
General Questions
What is TealTiger?
TealTiger is an AI agent security platform that provides guardrails, cost tracking, and policy management for LLM applications. It’s an SDK-only solution that requires no infrastructure - you integrate it directly into your application code.How is TealTiger different from other AI security tools?
TealTiger focuses on three key differentiators:- SDK-only architecture: No servers, no infrastructure, no deployment complexity
- Developer-first approach: Policy-as-code, CI/CD integration, deterministic decisions
- Enterprise-ready features: Policy rollout modes, audit redaction, correlation IDs, policy testing
Is TealTiger open source?
Yes! TealTiger SDKs (TypeScript and Python) are open source under the Apache 2.0 license and will remain open source. The future SaaS platform (v1.2.x+) will be a commercial offering, but the SDKs will always be free and open source.What languages/frameworks does TealTiger support?
- Languages: TypeScript/JavaScript (Node.js), Python
- Frameworks: LangChain, CrewAI, OpenClaw, MCP (Model Context Protocol)
- Observability: OpenTelemetry, LangFuse, LangSmith, Helicone
Licensing & Pricing
Is TealTiger free to use?
Yes, the v1.1.0 SDK is free and open source. There are no usage limits, no API keys required, and no telemetry sent to TealTiger servers.Will there be a paid version?
Yes, we plan to offer a SaaS platform (v1.2.x+) with additional features like:- Centralized policy management
- Multi-tenant governance
- Advanced analytics and dashboards
- Enterprise support
Do I need to pay for API calls?
No. TealTiger runs entirely in your application - there are no API calls to TealTiger servers. You only pay for your LLM provider costs (OpenAI, Anthropic, etc.).Technical Questions
Does TealTiger add latency to my application?
TealTiger policy evaluation is designed to be fast:- Target: under 10ms per evaluation (p95)
- Typical: 2-5ms for simple policies
- Impact: Minimal compared to LLM API calls (100-1000ms+)
Can I use TealTiger in production?
Yes! TealTiger v1.1.0 is production-ready with:- Deterministic decision contract
- Security-by-default audit redaction
- Policy rollout modes (MONITOR before ENFORCE)
- Comprehensive test coverage (80%+)
Does TealTiger work with streaming responses?
Yes, TealTiger can evaluate policies before streaming begins. For content moderation during streaming, you can evaluate chunks as they arrive.Can I use TealTiger with multiple LLM providers?
Yes! TealTiger is provider-agnostic. It works with:- OpenAI (GPT-4, GPT-3.5)
- Anthropic (Claude)
- Google Gemini - coming in v1.1.x
- AWS Bedrock - coming in v1.1.x
- Azure OpenAI - coming in v1.1.x
- Cohere - coming in v1.1.x
- Mistral AI - coming in v1.1.x
- Azure OpenAI - coming in v1.1.x
Does TealTiger support multi-tenancy?
Yes, use thetenant_id field in ExecutionContext:
Policy Questions
How do I write policies?
Policies are defined as JSON/JavaScript objects:Can I test policies before deploying?
Yes! Use the Policy Test Harness:What are policy modes?
Policy modes control how policies are enforced:- ENFORCE: Block requests that violate policy (production)
- MONITOR: Allow requests but log violations (testing)
- REPORT_ONLY: Log decisions without evaluation (audit only)
Can I gradually roll out policies?
Yes! Use per-policy mode overrides:Security Questions
Does TealTiger log sensitive data?
No, by default TealTiger uses security-by-default redaction:- Prompts and responses are hashed (not stored in plaintext)
- PII is automatically detected and redacted
- Debug mode is disabled by default
Can I customize redaction behavior?
Yes, configure redaction levels per field:Is TealTiger HIPAA/SOC2/GDPR compliant?
TealTiger provides the building blocks for compliance:- Audit logging with redaction
- PII detection and removal
- Deterministic decision records
- Correlation IDs for traceability
- Configure appropriate redaction levels
- Store audit logs securely
- Implement access controls
- Follow your organization’s compliance requirements
Does TealTiger send data to external servers?
No. TealTiger v1.1.0 is SDK-only and runs entirely in your application. No data is sent to TealTiger servers.Integration Questions
How do I integrate with LangChain?
Use the TealTiger LangChain integration:How do I integrate with OpenTelemetry?
Pass OpenTelemetry trace IDs to TealTiger:Can I use TealTiger with serverless functions?
Yes! TealTiger works great with serverless:- No persistent connections required
- Fast cold start (under 50ms overhead)
- Stateless design
Troubleshooting Questions
Why are my policies not being enforced?
Common causes:- Policy mode is MONITOR or REPORT_ONLY (not ENFORCE)
- Policy path doesn’t match your request structure
- Default mode is too permissive
Why are correlation IDs different across operations?
You’re likely creating a new ExecutionContext for each operation. Create the context once per request and pass it to all operations:Why is my audit log empty?
Common causes:- No outputs configured in TealAudit
- File permissions issue
- Events buffered but not flushed
Migration Questions
How do I migrate from v1.0.x to v1.1.0?
See the Migration Guide for step-by-step instructions. Key changes:- New Decision contract (deterministic fields)
- ExecutionContext with correlation IDs
- Policy modes (ENFORCE/MONITOR/REPORT_ONLY)
- Audit schema v1.0.0
Is v1.1.0 backwards compatible with v1.0.x?
No, v1.1.0 introduces breaking changes:- Decision object structure changed
- Policy configuration format updated
- Audit event schema versioned
Can I run v1.0.x and v1.1.0 side-by-side?
Yes, you can run both versions in different parts of your application during migration. Use different import paths:Roadmap Questions
What’s coming in v1.2.x?
Planned features for v1.2.x:- SaaS platform with centralized policy management
- Multi-provider support (Gemini, Bedrock, Azure OpenAI)
- Advanced analytics and dashboards
- Enterprise governance features
When will multi-provider support be available?
Multi-provider support (Gemini, Bedrock, Azure OpenAI, Cohere, Mistral) is planned for Q2-Q3 2026 as part of v1.1.x releases.Can I request a feature?
Yes! We welcome feature requests:- Check GitHub Issues for existing requests
- Open a new issue with the “feature request” label
- Describe your use case and the problem you’re trying to solve
Support Questions
Where can I get help?
- Website: tealtiger.ai
- Documentation: docs.tealtiger.ai
- Playground: playground.tealtiger.ai
- Blog: blogs.tealtiger.ai
- GitHub: github.com/agentguard-ai/tealtiger
- TypeScript SDK: github.com/agentguard-ai/tealtiger-typescript-prod
- Python SDK: github.com/agentguard-ai/tealtiger-python-prod
- Email: reachout@tealtiger.ai (enterprise support)
How do I report a bug?
- Check GitHub Issues for existing reports
- Open a new issue with:
- TealTiger version
- Language/framework (TypeScript/Python)
- Minimal reproduction code
- Expected vs actual behavior
- Error messages/logs
How do I contribute?
We welcome contributions! See CONTRIBUTING.md for guidelines. Common contributions:- Bug fixes
- Documentation improvements
- Example applications
- Integration guides
- Test coverage
Still Have Questions?
If your question isn’t answered here:- Check the Troubleshooting Guide
- Search the documentation
- Try the playground to test your use case
- Read tutorials on blogs.tealtiger.ai
- Email reachout@tealtiger.ai

