Skip to content

Multi-language SDK expansion: C#, Java, TypeScript & Python updates#132

Open
NVJKKartik wants to merge 15 commits intomainfrom
dev
Open

Multi-language SDK expansion: C#, Java, TypeScript & Python updates#132
NVJKKartik wants to merge 15 commits intomainfrom
dev

Conversation

@NVJKKartik
Copy link
Contributor

Summary

Major release adding multi-language SDK support and significantly expanding instrumentation coverage across all supported languages.

C# SDK (New)

  • FIInstrumentation SDK with TraceAI.Register() entry point and OTLP HTTP protobuf export
  • FITracer with Chain, LLM, Agent, Tool span kinds
  • Semantic conventions (gen_ai.* OTEL conventions), context attributes (session, user, metadata, tags), and TraceConfig for sensitive data masking
  • Unit tests + E2E tests

Java SDK (New)

  • 25-module Java SDK with TraceAI.init(), TracedOpenAI, and OTLP HTTP export
  • LLM providers: openai, anthropic, ollama, google-genai, bedrock, vertexai, azure-openai, cohere, watsonx, semantic-kernel
  • Vector DBs: pinecone, qdrant, chromadb, redis, elasticsearch, pgvector, milvus, mongodb, weaviate, azure-search
  • Frameworks: langchain4j, spring-ai, spring-boot-starter
  • E2E tests for all modules

TypeScript (31 new packages + updates to existing)

  • New LLM provider instrumentors: cerebras, cohere, deepseek, fireworks, google_genai, groq, huggingface, mistral, ollama, portkey, together, vertexai, vllm, xai
  • New vector DB instrumentors: chromadb, lancedb, milvus, mongodb, pgvector, pinecone, qdrant, redis, weaviate
  • New framework instrumentors: beeai, google_adk, guardrails, instructor, livekit, openai_agents, pipecat, strands
  • Updated fi-core, fi-semantic-conventions, and 8 existing instrumentors (openai, anthropic, bedrock, langchain, llamaindex, mastra, mcp, vercel) with gen_ai.* OTEL semantic convention migration and E2E
    tests

Python (23 new packages + updates to existing)

  • New instrumentors: agno, beeai, cerebras, chromadb, cohere, deepseek, fireworks, huggingface, lancedb, milvus, mongodb-vector, ollama, pgvector, pinecone, pydantic-ai, qdrant, redis-vector, strands,
    together, vllm, weaviate, xai, claude-agent-sdk
  • traceai meta-package for simplified installation
  • Updated existing instrumentors with gen_ai.* semantic conventions
  • 50+ E2E tests and comprehensive docs

NVJKKartik and others added 11 commits February 23, 2026 14:55
New C# SDK with full tracing support:
- TraceAI.Register() entry point with OTLP HTTP protobuf export
- FITracer with Chain, LLM, Agent, Tool span kinds
- SemanticConventions (gen_ai.* OTEL conventions)
- ContextAttributes (session, user, metadata, tags)
- TraceConfig for sensitive data masking
- 5 E2E tests + unit tests
New Java SDK with comprehensive instrumentation:
- Core: traceai-java-core with TraceAI.init(), TracedOpenAI, OTLP HTTP export
- LLM providers: openai, anthropic, ollama, google-genai, bedrock, vertexai, azure-openai, cohere, watsonx, semantic-kernel
- Vector DBs: pinecone, qdrant, chromadb, redis, elasticsearch, pgvector, milvus, mongodb, weaviate, azure-search
- Frameworks: langchain4j, spring-ai, spring-boot-starter
- E2E tests for all modules
New LLM provider instrumentors:
- cerebras, cohere, deepseek, fireworks, google_genai, groq, huggingface, mistral, ollama, portkey, together, vertexai, vllm, xai

New vector DB instrumentors:
- chromadb, lancedb, milvus, mongodb, pgvector, pinecone, qdrant, redis, weaviate

New framework instrumentors:
- beeai, google_adk, guardrails, instructor, livekit, openai_agents, pipecat, strands

All packages include instrumentation, E2E tests, and examples.
…entions, and 8 instrumentors

Updates fi-core with OTEL GenAI migration, fi-semantic-conventions with gen_ai.* conventions,
and existing instrumentor packages (openai, anthropic, bedrock, langchain, llamaindex, mastra,
mcp, vercel) with updated attribute names and E2E tests.
…tion, and docs

Adds 23 new Python instrumentor packages (agno, beeai, cerebras, chromadb, cohere,
deepseek, fireworks, huggingface, lancedb, milvus, mongodb-vector, ollama, pgvector,
pinecone, pydantic-ai, qdrant, redis-vector, strands, together, vllm, weaviate, xai,
claude-agent-sdk), traceai meta-package, 50+ E2E tests, and comprehensive docs.

Updates existing Python instrumentors with gen_ai.* semantic conventions.
feat: update Python SDK — new frameworks, E2E tests, docs [5/5]
feat: update existing TypeScript packages — OTEL GenAI migration [4/5]
feat: add 31 new TypeScript instrumentor packages [3/5]
feat: add Java traceAI SDK with 25 modules [2/5]
feat: add C# FIInstrumentation SDK [1/5]
@entelligence-ai-pr-reviews
Copy link

Automatic Review Skipped

Too many files for automatic review.

If you would still like a review, you can trigger one manually by commenting:

@entelligence review

@azain-commits
Copy link

@entillegence review

…output

- Remove try/catch blocks that silently swallowed API errors across all
  20 E2E test files, making tests report actual failures instead of
  always passing
- Add assertThat assertions on response values for proper validation
- Fix Bedrock TracedBedrockRuntimeClient: add missing input.value for
  converse(), serialize raw input/output as strings instead of passing
  AWS SDK objects directly to Gson
- Use assertThrows for Watsonx tests that intentionally use dummy client
- Add throws Exception declarations where checked exceptions propagate
- Remove 203 target/ files that were incorrectly tracked
- Add .factorypath, *.class, *.jar, *.war, uv.lock to .gitignore
…tsconfig, SDK compat

- Use workspace:^ for all internal deps (40 package.json files)
- Add test excludes to 64 tsconfig.esm/esnext.json files
- Fix moduleResolution to bundler in 20 ESM/ESNext configs
- Fix bedrock response attribute extraction (3 files)
- Fix vercel: upgrade @ai-sdk/openai v1->v3, use .chat() for Google API
- Fix langchain: add @langchain/openai dep, instrumentation ^0.3.0 range
- Fix llamaindex: add @llamaindex/openai dep, update imports
- Fix openai-agents: use tool() factory, gate on OPENAI_API_KEY
- Fix strands: use invoke() instead of run(), ESM jest config
- Fix vertexai: update deprecated model to gemini-2.5-flash
- Fix instructor/langchain/llamaindex/strands e2e test type casts
- Fix fi-core contextAttributes explicit return statements
fix: e2e tests across all packages - workspace deps, tsconfig, SDK compat, Java build artifacts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants