mirror of https://github.com/langgenius/dify.git
14 lines
361 B
Python
14 lines
361 B
Python
"""Semantic convention shortcuts for Dify-specific spans."""
|
|
|
|
from .dify import DifySpanAttributes
|
|
from .gen_ai import ChainAttributes, GenAIAttributes, LLMAttributes, RetrieverAttributes, ToolAttributes
|
|
|
|
__all__ = [
|
|
"ChainAttributes",
|
|
"DifySpanAttributes",
|
|
"GenAIAttributes",
|
|
"LLMAttributes",
|
|
"RetrieverAttributes",
|
|
"ToolAttributes",
|
|
]
|