File tree Expand file tree Collapse file tree 4 files changed +543
-236
lines changed
tests/integrations/langchain Expand file tree Collapse file tree 4 files changed +543
-236
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,10 @@ ignore_missing_imports = true
126
126
module = " langchain_core.*"
127
127
ignore_missing_imports = true
128
128
129
+ [[tool .mypy .overrides ]]
130
+ module = " langchain.*"
131
+ ignore_missing_imports = true
132
+
129
133
[[tool .mypy .overrides ]]
130
134
module = " executing.*"
131
135
ignore_missing_imports = true
Original file line number Diff line number Diff line change @@ -795,6 +795,7 @@ class OP:
795
795
GEN_AI_EMBEDDINGS = "gen_ai.embeddings"
796
796
GEN_AI_EXECUTE_TOOL = "gen_ai.execute_tool"
797
797
GEN_AI_HANDOFF = "gen_ai.handoff"
798
+ GEN_AI_PIPELINE = "gen_ai.pipeline"
798
799
GEN_AI_INVOKE_AGENT = "gen_ai.invoke_agent"
799
800
GEN_AI_RESPONSES = "gen_ai.responses"
800
801
GRAPHQL_EXECUTE = "graphql.execute"
@@ -822,11 +823,6 @@ class OP:
822
823
HUGGINGFACE_HUB_CHAT_COMPLETIONS_CREATE = (
823
824
"ai.chat_completions.create.huggingface_hub"
824
825
)
825
- LANGCHAIN_PIPELINE = "ai.pipeline.langchain"
826
- LANGCHAIN_RUN = "ai.run.langchain"
827
- LANGCHAIN_TOOL = "ai.tool.langchain"
828
- LANGCHAIN_AGENT = "ai.agent.langchain"
829
- LANGCHAIN_CHAT_COMPLETIONS_CREATE = "ai.chat_completions.create.langchain"
830
826
QUEUE_PROCESS = "queue.process"
831
827
QUEUE_PUBLISH = "queue.publish"
832
828
QUEUE_SUBMIT_ARQ = "queue.submit.arq"
You can’t perform that action at this time.
0 commit comments