Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_format_to_gapic_function_declaration is printing unsolicited messages while running a invoke. #29564

Open
5 tasks done
torvicvasil opened this issue Feb 3, 2025 · 0 comments
Labels
🤖:bug Related to a bug, vulnerability, unexpected error with an existing feature

Comments

@torvicvasil
Copy link

torvicvasil commented Feb 3, 2025

Checked other resources

  • I added a very descriptive title to this issue.
  • I searched the LangChain documentation with the integrated search.
  • I used the GitHub search to find a similar question and didn't find it.
  • I am sure that this is a bug in LangChain rather than my code.
  • The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package).

Example Code

That's part of my code:

@tool
def list_tables_tool(): 
    """List the tables of the database """
    list_tables_tool = next(tool for tool in db_tools if tool.name == "sql_db_list_tables")
    return list_tables_tool.invoke("")

@tool
def get_schema_tool(db_name: str):
    """Get the schema of the database"""
    get_schema_tool = next(tool for tool in db_tools if tool.name == "sql_db_schema")
    return get_schema_tool.invoke(db_name)

@tool  
def execute_query_tool(query: str) -> str:
    """
    Execute a SQL query against the database and get back the result.
    If the query is not correct, an error message will be returned.
    If an error is returned, rewrite the query, check the query, and try again.
    """
    result = db.run_no_throw(query)
    if not result:
        return "Error: Query failed. Please rewrite your query and try again."
    return result


tools = [
    list_tables_tool,
    get_schema_tool,
    execute_query_tool,
    generate_sql_query_tool,
    # chart_agent_tool,
]
assistant_runnable = assistant_prompt | llm.bind_tools(tools)

import uuid

print("Você pode fazer perguntas diretamente. Digite 'sair' para encerrar o chat.\n")

thread_id = str(uuid.uuid4())

config = {
    "configurable": {
        # Checkpoints são acessados pelo thread_id
        "thread_id": thread_id,
    }
}

events_list = []
while True:
    user_question = input("Você: ")

    if user_question.lower() == "sair":
        print("Encerrando o chat... Até mais!")
        break

    try:
        result = graph.invoke(
            {"messages": ("user", user_question)}, config
        )
        events_list.append(result)
        # json_str = result["messages"][-1].tool_calls[0]["args"]["final_answer"]
        json_str = result["messages"][-1].content
        print(f"Assistente: {json_str}")
     
    except Exception as e:
        print(f"Erro ao processar a pergunta: {e}")

Error Message and Stack Trace (if applicable)

Last week everything was working fine then I updated langchain to the last version and now I'm receiving plenty of messages that I didn't print:

_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'list_tables_tool', 'description': 'List the tables of the database', 'parameters': {'properties': {}, 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'get_schema_tool', 'description': 'Get the schema of the database', 'parameters': {'properties': {'db_name': {'type': 'string'}}, 'required': ['db_name'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'execute_query_tool', 'description': 'Execute a SQL query against the database and get back the result.\nIf the query is not correct, an error message will be returned.\nIf an error is returned, rewrite the query, check the query, and try again.', 'parameters': {'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'generate_sql_query_tool', 'description': 'Generate the SQL Query according to the question asked by the user and the table schema', 'parameters': {'properties': {'question': {'type': 'string'}, 'table_schema': {'type': 'string'}}, 'required': ['question', 'table_schema'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'list_tables_tool', 'description': 'List the tables of the database', 'parameters': {'properties': {}, 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'get_schema_tool', 'description': 'Get the schema of the database', 'parameters': {'properties': {'db_name': {'type': 'string'}}, 'required': ['db_name'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'execute_query_tool', 'description': 'Execute a SQL query against the database and get back the result.\nIf the query is not correct, an error message will be returned.\nIf an error is returned, rewrite the query, check the query, and try again.', 'parameters': {'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'generate_sql_query_tool', 'description': 'Generate the SQL Query according to the question asked by the user and the table schema', 'parameters': {'properties': {'question': {'type': 'string'}, 'table_schema': {'type': 'string'}}, 'required': ['question', 'table_schema'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'list_tables_tool', 'description': 'List the tables of the database', 'parameters': {'properties': {}, 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'get_schema_tool', 'description': 'Get the schema of the database', 'parameters': {'properties': {'db_name': {'type': 'string'}}, 'required': ['db_name'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'execute_query_tool', 'description': 'Execute a SQL query against the database and get back the result.\nIf the query is not correct, an error message will be returned.\nIf an error is returned, rewrite the query, check the query, and try again.', 'parameters': {'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'generate_sql_query_tool', 'description': 'Generate the SQL Query according to the question asked by the user and the table schema', 'parameters': {'properties': {'question': {'type': 'string'}, 'table_schema': {'type': 'string'}}, 'required': ['question', 'table_schema'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'list_tables_tool', 'description': 'List the tables of the database', 'parameters': {'properties': {}, 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'get_schema_tool', 'description': 'Get the schema of the database', 'parameters': {'properties': {'db_name': {'type': 'string'}}, 'required': ['db_name'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'execute_query_tool', 'description': 'Execute a SQL query against the database and get back the result.\nIf the query is not correct, an error message will be returned.\nIf an error is returned, rewrite the query, check the query, and try again.', 'parameters': {'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'generate_sql_query_tool', 'description': 'Generate the SQL Query according to the question asked by the user and the table schema', 'parameters': {'properties': {'question': {'type': 'string'}, 'table_schema': {'type': 'string'}}, 'required': ['question', 'table_schema'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'list_tables_tool', 'description': 'List the tables of the database', 'parameters': {'properties': {}, 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'get_schema_tool', 'description': 'Get the schema of the database', 'parameters': {'properties': {'db_name': {'type': 'string'}}, 'required': ['db_name'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'execute_query_tool', 'description': 'Execute a SQL query against the database and get back the result.\nIf the query is not correct, an error message will be returned.\nIf an error is returned, rewrite the query, check the query, and try again.', 'parameters': {'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'type': 'object'}}}
_format_to_gapic_function_declaration
{'type': 'function', 'function': {'name': 'generate_sql_query_tool', 'description': 'Generate the SQL Query according to the question asked by the user and the table schema', 'parameters': {'properties': {'question': {'type': 'string'}, 'table_schema': {'type': 'string'}}, 'required': ['question', 'table_schema'], 'type': 'object'}}}

Description

Last week everything was working fine then I updated langchain to the latest version and now I'm receiving plenty of messages that I didn't print.

System Info

pip freeze:

aiohappyeyeballs==2.4.4
aiohttp==3.11.11
aiosignal==1.3.2
aiosqlite==0.20.0
alembic @ file:///home/conda/feedstock_root/build_artifacts/alembic_1694690212886/work
altair @ file:///home/conda/feedstock_root/build_artifacts/altair_1696364485230/work
annotated-types==0.7.0
anyio @ file:///home/conda/feedstock_root/build_artifacts/anyio_1693488585952/work
argon2-cffi @ file:///home/conda/feedstock_root/build_artifacts/argon2-cffi_1692818318753/work
argon2-cffi-bindings @ file:///home/conda/feedstock_root/build_artifacts/argon2-cffi-bindings_1695386553988/work
arrow @ file:///home/conda/feedstock_root/build_artifacts/arrow_1696128962909/work
asttokens @ file:///home/conda/feedstock_root/build_artifacts/asttokens_1694046349000/work
async-generator==1.10
async-lru @ file:///home/conda/feedstock_root/build_artifacts/async-lru_1690563019058/work
attrs==25.1.0
Babel @ file:///home/conda/feedstock_root/build_artifacts/babel_1696976437817/work
backcall @ file:///home/conda/feedstock_root/build_artifacts/backcall_1592338393461/work
backports.functools-lru-cache @ file:///home/conda/feedstock_root/build_artifacts/backports.functools_lru_cache_1687772187254/work
beautifulsoup4 @ file:///home/conda/feedstock_root/build_artifacts/beautifulsoup4_1680888073205/work
bleach @ file:///home/conda/feedstock_root/build_artifacts/bleach_1696630167146/work
blinker @ file:///home/conda/feedstock_root/build_artifacts/blinker_1696764509355/work
bokeh @ file:///home/conda/feedstock_root/build_artifacts/bokeh_1697011463973/work
boltons @ file:///home/conda/feedstock_root/build_artifacts/boltons_1677499911949/work
Bottleneck @ file:///home/conda/feedstock_root/build_artifacts/bottleneck_1696018006395/work
Brotli @ file:///home/conda/feedstock_root/build_artifacts/brotli-split_1695989787169/work
cached-property @ file:///home/conda/feedstock_root/build_artifacts/cached_property_1615209429212/work
cachetools==5.5.1
certifi==2023.7.22
certipy==0.1.3
cffi @ file:///home/conda/feedstock_root/build_artifacts/cffi_1696001724357/work
charset-normalizer @ file:///home/conda/feedstock_root/build_artifacts/charset-normalizer_1696431134479/work
click @ file:///home/conda/feedstock_root/build_artifacts/click_1692311806742/work
cloudpickle @ file:///home/conda/feedstock_root/build_artifacts/cloudpickle_1697464713350/work
colorama @ file:///home/conda/feedstock_root/build_artifacts/colorama_1666700638685/work
comm @ file:///home/conda/feedstock_root/build_artifacts/comm_1691044910542/work
conda @ file:///home/conda/feedstock_root/build_artifacts/conda_1696225914875/work
conda-package-handling @ file:///home/conda/feedstock_root/build_artifacts/conda-package-handling_1691048088238/work
conda_package_streaming @ file:///home/conda/feedstock_root/build_artifacts/conda-package-streaming_1691009212940/work
contourpy @ file:///home/conda/feedstock_root/build_artifacts/contourpy_1695554207611/work
cryptography @ file:///home/conda/feedstock_root/build_artifacts/cryptography-split_1695163784773/work
cycler @ file:///home/conda/feedstock_root/build_artifacts/cycler_1696677705766/work
Cython @ file:///home/conda/feedstock_root/build_artifacts/cython_1697605111404/work
cytoolz @ file:///home/conda/feedstock_root/build_artifacts/cytoolz_1695545149561/work
dask @ file:///home/conda/feedstock_root/build_artifacts/dask-core_1697245951516/work
dataclasses-json==0.6.7
debugpy @ file:///home/conda/feedstock_root/build_artifacts/debugpy_1695534290440/work
decorator @ file:///home/conda/feedstock_root/build_artifacts/decorator_1641555617451/work
defusedxml @ file:///home/conda/feedstock_root/build_artifacts/defusedxml_1615232257335/work
dill @ file:///home/conda/feedstock_root/build_artifacts/dill_1690101045195/work
distributed @ file:///home/conda/feedstock_root/build_artifacts/distributed_1697249144856/work
docarray==0.40.0
docstring_parser==0.16
entrypoints @ file:///home/conda/feedstock_root/build_artifacts/entrypoints_1643888246732/work
et-xmlfile @ file:///home/conda/feedstock_root/build_artifacts/et_xmlfile_1674664118162/work
exceptiongroup @ file:///home/conda/feedstock_root/build_artifacts/exceptiongroup_1692026125334/work
executing @ file:///home/conda/feedstock_root/build_artifacts/executing_1667317341051/work
fastjsonschema @ file:///home/conda/feedstock_root/build_artifacts/python-fastjsonschema_1696171779618/work/dist
filetype==1.2.0
fonttools @ file:///home/conda/feedstock_root/build_artifacts/fonttools_1696601281595/work
fqdn @ file:///home/conda/feedstock_root/build_artifacts/fqdn_1638810296540/work/dist
frozenlist==1.5.0
fsspec @ file:///home/conda/feedstock_root/build_artifacts/fsspec_1695417469930/work
gitdb @ file:///home/conda/feedstock_root/build_artifacts/gitdb_1669279893622/work
GitPython @ file:///home/conda/feedstock_root/build_artifacts/gitpython_1697650329377/work
gmpy2 @ file:///home/conda/feedstock_root/build_artifacts/gmpy2_1666808665953/work
google-ai-generativelanguage==0.6.15
google-api-core==2.24.1
google-api-python-client==2.160.0
google-auth==2.38.0
google-auth-httplib2==0.2.0
google-cloud-aiplatform==1.79.0
google-cloud-bigquery==3.29.0
google-cloud-core==2.4.1
google-cloud-resource-manager==1.14.0
google-cloud-storage==2.19.0
google-crc32c==1.6.0
google-generativeai==0.8.4
google-resumable-media==2.7.2
googleapis-common-protos==1.66.0
greenlet @ file:///home/conda/feedstock_root/build_artifacts/greenlet_1696597334170/work
grpc-google-iam-v1==0.14.0
grpcio==1.70.0
grpcio-status==1.70.0
h11==0.14.0
h5py @ file:///home/conda/feedstock_root/build_artifacts/h5py_1696885505601/work
htmldocx==0.0.6
httpcore==1.0.7
httplib2==0.22.0
httpx==0.28.1
httpx-sse==0.4.0
idna @ file:///home/conda/feedstock_root/build_artifacts/idna_1663625384323/work
imagecodecs @ file:///home/conda/feedstock_root/build_artifacts/imagecodecs_1696191619262/work
imageio @ file:///home/conda/feedstock_root/build_artifacts/imageio_1696854106455/work
importlib-metadata @ file:///home/conda/feedstock_root/build_artifacts/importlib-metadata_1688754491823/work
importlib-resources @ file:///home/conda/feedstock_root/build_artifacts/importlib_resources_1695414790617/work
ipykernel @ file:///home/conda/feedstock_root/build_artifacts/ipykernel_1693880262622/work
ipympl @ file:///home/conda/feedstock_root/build_artifacts/ipympl_1676535632179/work
ipython @ file:///home/conda/feedstock_root/build_artifacts/ipython_1696264049390/work
ipython-genutils==0.2.0
ipywidgets @ file:///home/conda/feedstock_root/build_artifacts/ipywidgets_1694607144474/work
isoduration @ file:///home/conda/feedstock_root/build_artifacts/isoduration_1638811571363/work/dist
jedi @ file:///home/conda/feedstock_root/build_artifacts/jedi_1696326070614/work
Jinja2 @ file:///home/conda/feedstock_root/build_artifacts/jinja2_1654302431367/work
joblib @ file:///home/conda/feedstock_root/build_artifacts/joblib_1691577114857/work
json5 @ file:///home/conda/feedstock_root/build_artifacts/json5_1688248289187/work
jsonpatch @ file:///home/conda/feedstock_root/build_artifacts/jsonpatch_1695536281965/work
jsonpointer @ file:///home/conda/feedstock_root/build_artifacts/jsonpointer_1695397236330/work
jsonschema @ file:///home/conda/feedstock_root/build_artifacts/jsonschema-meta_1695228989494/work
jsonschema-specifications @ file:///home/conda/feedstock_root/build_artifacts/jsonschema-specifications_1689701150890/work
jupyter-events @ file:///home/conda/feedstock_root/build_artifacts/jupyter_events_1697461661078/work
jupyter-lsp @ file:///home/conda/feedstock_root/build_artifacts/jupyter-lsp-meta_1685453365113/work/jupyter-lsp
jupyter-server-mathjax @ file:///home/conda/feedstock_root/build_artifacts/jupyter-server-mathjax_1672324512570/work
jupyter-telemetry @ file:///home/conda/feedstock_root/build_artifacts/jupyter_telemetry_1605173804246/work
jupyter_client @ file:///home/conda/feedstock_root/build_artifacts/jupyter_client_1697036793436/work
jupyter_core @ file:///home/conda/feedstock_root/build_artifacts/jupyter_core_1696974210157/work
jupyter_server @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_1697462025510/work
jupyter_server_terminals @ file:///home/conda/feedstock_root/build_artifacts/jupyter_server_terminals_1673491454549/work
jupyterhub @ file:///home/conda/feedstock_root/build_artifacts/jupyterhub-feedstock_1691671359799/work
jupyterlab @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_1697059705708/work
jupyterlab-git @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab-git_1671178507108/work
jupyterlab-pygments @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_pygments_1649936611996/work
jupyterlab-widgets @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_widgets_1694598704522/work
jupyterlab_server @ file:///home/conda/feedstock_root/build_artifacts/jupyterlab_server-split_1694531968623/work
kiwisolver @ file:///home/conda/feedstock_root/build_artifacts/kiwisolver_1695379920604/work
langchain==0.3.17
langchain-community==0.3.16
langchain-core==0.3.33
langchain-experimental==0.3.4
langchain-google-genai==2.0.9
langchain-google-vertexai==2.0.12
langchain-text-splitters==0.3.5
langgraph==0.2.69
langgraph-checkpoint==2.0.10
langgraph-checkpoint-sqlite==2.0.3
langgraph-sdk==0.1.51
langsmith==0.3.3
lazy_loader @ file:///home/conda/feedstock_root/build_artifacts/lazy_loader_1692295373316/work
libmambapy @ file:///home/conda/feedstock_root/build_artifacts/mamba-split_1697482692941/work/libmambapy
llvmlite==0.40.1
locket @ file:///home/conda/feedstock_root/build_artifacts/locket_1650660393415/work
lxml==5.3.0
lz4 @ file:///home/conda/feedstock_root/build_artifacts/lz4_1695448708452/work
Mako @ file:///home/conda/feedstock_root/build_artifacts/mako_1668568582731/work
mamba @ file:///home/conda/feedstock_root/build_artifacts/mamba-split_1697482692941/work/mamba
Markdown==3.7
markdown-it-py==3.0.0
MarkupSafe @ file:///home/conda/feedstock_root/build_artifacts/markupsafe_1695367421802/work
marshmallow==3.26.0
matplotlib @ file:///home/conda/feedstock_root/build_artifacts/matplotlib-suite_1697011600307/work
matplotlib-inline @ file:///home/conda/feedstock_root/build_artifacts/matplotlib-inline_1660814786464/work
mdurl==0.1.2
mistune @ file:///home/conda/feedstock_root/build_artifacts/mistune_1692116650819/work
mpmath @ file:///home/conda/feedstock_root/build_artifacts/mpmath_1678228039184/work
msgpack==1.1.0
multidict==6.1.0
munkres==1.1.4
mypy-extensions==1.0.0
nbclassic @ file:///home/conda/feedstock_root/build_artifacts/nbclassic_1683202081046/work
nbclient @ file:///home/conda/feedstock_root/build_artifacts/nbclient_1684790896106/work
nbconvert @ file:///home/conda/feedstock_root/build_artifacts/nbconvert-meta_1696472732413/work
nbdime @ file:///home/conda/feedstock_root/build_artifacts/nbdime_1682876851950/work
nbformat @ file:///home/conda/feedstock_root/build_artifacts/nbformat_1690814868471/work
nest-asyncio @ file:///home/conda/feedstock_root/build_artifacts/nest-asyncio_1697083700168/work
networkx @ file:///home/conda/feedstock_root/build_artifacts/networkx_1697702021490/work
notebook @ file:///home/conda/feedstock_root/build_artifacts/notebook_1697550696415/work
notebook_shim @ file:///home/conda/feedstock_root/build_artifacts/notebook-shim_1682360583588/work
numba @ file:///home/conda/feedstock_root/build_artifacts/numba_1687804756633/work
numexpr @ file:///home/conda/feedstock_root/build_artifacts/numexpr_1697637016001/work
numpy @ file:///home/conda/feedstock_root/build_artifacts/numpy_1687808322243/work
oauthlib @ file:///home/conda/feedstock_root/build_artifacts/oauthlib_1666056362788/work
openpyxl @ file:///home/conda/feedstock_root/build_artifacts/openpyxl_1695464696880/work
orjson==3.10.15
outcome==1.3.0.post0
overrides @ file:///home/conda/feedstock_root/build_artifacts/overrides_1691338815398/work
packaging @ file:///home/conda/feedstock_root/build_artifacts/packaging_1696202382185/work
pamela @ file:///home/conda/feedstock_root/build_artifacts/pamela_1691565434937/work
pandas @ file:///home/conda/feedstock_root/build_artifacts/pandas_1696030104526/work
pandocfilters @ file:///home/conda/feedstock_root/build_artifacts/pandocfilters_1631603243851/work
parso @ file:///home/conda/feedstock_root/build_artifacts/parso_1638334955874/work
partd @ file:///home/conda/feedstock_root/build_artifacts/partd_1695667515973/work
patsy @ file:///home/conda/feedstock_root/build_artifacts/patsy_1665356157073/work
pexpect @ file:///home/conda/feedstock_root/build_artifacts/pexpect_1667297516076/work
pickleshare @ file:///home/conda/feedstock_root/build_artifacts/pickleshare_1602536217715/work
Pillow @ file:///home/conda/feedstock_root/build_artifacts/pillow_1697423637300/work
pkgutil_resolve_name @ file:///home/conda/feedstock_root/build_artifacts/pkgutil-resolve-name_1694617248815/work
platformdirs @ file:///home/conda/feedstock_root/build_artifacts/platformdirs_1696272223550/work
pluggy @ file:///home/conda/feedstock_root/build_artifacts/pluggy_1693086607691/work
prometheus-client @ file:///home/conda/feedstock_root/build_artifacts/prometheus_client_1689032443210/work
prompt-toolkit @ file:///home/conda/feedstock_root/build_artifacts/prompt-toolkit_1688565951714/work
propcache==0.2.1
proto-plus==1.26.0
protobuf==5.29.3
psutil @ file:///home/conda/feedstock_root/build_artifacts/psutil_1695367159033/work
ptyprocess @ file:///home/conda/feedstock_root/build_artifacts/ptyprocess_1609419310487/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl
pure-eval @ file:///home/conda/feedstock_root/build_artifacts/pure_eval_1642875951954/work
py-cpuinfo @ file:///home/conda/feedstock_root/build_artifacts/py-cpuinfo_1666774466606/work
pyarrow==13.0.0
pyasn1==0.6.1
pyasn1_modules==0.4.1
pycosat @ file:///home/conda/feedstock_root/build_artifacts/pycosat_1696355758146/work
pycparser @ file:///home/conda/feedstock_root/build_artifacts/pycparser_1636257122734/work
pycurl==7.45.1
pydantic==2.10.6
pydantic-settings==2.7.1
pydantic_core==2.27.2
Pygments @ file:///home/conda/feedstock_root/build_artifacts/pygments_1691408637400/work
PyJWT @ file:///home/conda/feedstock_root/build_artifacts/pyjwt_1689721553971/work
pyOpenSSL @ file:///home/conda/feedstock_root/build_artifacts/pyopenssl_1685514481738/work
pyparsing @ file:///home/conda/feedstock_root/build_artifacts/pyparsing_1690737849915/work
PySocks @ file:///home/conda/feedstock_root/build_artifacts/pysocks_1661604839144/work
python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/python-dateutil_1626286286081/work
python-docx==1.1.2
python-dotenv==1.0.1
python-json-logger @ file:///home/conda/feedstock_root/build_artifacts/python-json-logger_1677079630776/work
python-pptx==1.0.2
pytz @ file:///home/conda/feedstock_root/build_artifacts/pytz_1693930252784/work
PyWavelets @ file:///home/conda/feedstock_root/build_artifacts/pywavelets_1695567566807/work
PyYAML @ file:///home/conda/feedstock_root/build_artifacts/pyyaml_1695373611984/work
pyzmq @ file:///home/conda/feedstock_root/build_artifacts/pyzmq_1695384312770/work
referencing @ file:///home/conda/feedstock_root/build_artifacts/referencing_1691337268233/work
regex==2024.11.6
requests @ file:///home/conda/feedstock_root/build_artifacts/requests_1684774241324/work
requests-toolbelt==1.0.0
rfc3339-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3339-validator_1638811747357/work
rfc3986-validator @ file:///home/conda/feedstock_root/build_artifacts/rfc3986-validator_1598024191506/work
rich==13.9.4
rpds-py @ file:///home/conda/feedstock_root/build_artifacts/rpds-py_1697072234495/work
rsa==4.9
ruamel.yaml @ file:///home/conda/feedstock_root/build_artifacts/ruamel.yaml_1697743515120/work
ruamel.yaml.clib @ file:///home/conda/feedstock_root/build_artifacts/ruamel.yaml.clib_1695996834452/work
scikit-image @ file:///home/conda/feedstock_root/build_artifacts/scikit-image_1697028611470/work/dist/scikit_image-0.22.0-cp311-cp311-linux_x86_64.whl#sha256=53d8b95f752df47007e9e71dd1c9805b9334e1e4791cf48e3762abb922636f04
scikit-learn @ file:///home/conda/feedstock_root/build_artifacts/scikit-learn_1696574834166/work
scipy @ file:///home/conda/feedstock_root/build_artifacts/scipy-split_1696467621138/work/dist/scipy-1.11.3-cp311-cp311-linux_x86_64.whl#sha256=b226522707b433941a1f15e1b3bb2751e63c9f9c13ca4f89a5e523eb321433d1
seaborn @ file:///home/conda/feedstock_root/build_artifacts/seaborn-split_1696262444380/work
selenium==4.28.1
Send2Trash @ file:///home/conda/feedstock_root/build_artifacts/send2trash_1682601222253/work
shapely==2.0.7
six @ file:///home/conda/feedstock_root/build_artifacts/six_1620240208055/work
smmap @ file:///home/conda/feedstock_root/build_artifacts/smmap_1611376390914/work
sniffio @ file:///home/conda/feedstock_root/build_artifacts/sniffio_1662051266223/work
sortedcontainers @ file:///home/conda/feedstock_root/build_artifacts/sortedcontainers_1621217038088/work
soupsieve @ file:///home/conda/feedstock_root/build_artifacts/soupsieve_1693929250441/work
SQLAlchemy @ file:///home/conda/feedstock_root/build_artifacts/sqlalchemy_1697201147541/work
stack-data @ file:///home/conda/feedstock_root/build_artifacts/stack_data_1669632077133/work
statsmodels @ file:///home/conda/feedstock_root/build_artifacts/statsmodels_1696548154836/work
sympy @ file:///home/conda/feedstock_root/build_artifacts/sympy_1684180540116/work
tables @ file:///home/conda/feedstock_root/build_artifacts/pytables_1696670791697/work
tavily-python==0.5.0
tblib @ file:///home/conda/feedstock_root/build_artifacts/tblib_1694702375735/work
tenacity==9.0.0
terminado @ file:///home/conda/feedstock_root/build_artifacts/terminado_1670253674810/work
threadpoolctl @ file:///home/conda/feedstock_root/build_artifacts/threadpoolctl_1689261241048/work
tifffile @ file:///home/conda/feedstock_root/build_artifacts/tifffile_1695815014864/work
tiktoken==0.8.0
tinycss2 @ file:///home/conda/feedstock_root/build_artifacts/tinycss2_1666100256010/work
tomli @ file:///home/conda/feedstock_root/build_artifacts/tomli_1644342247877/work
toolz @ file:///home/conda/feedstock_root/build_artifacts/toolz_1657485559105/work
tornado @ file:///home/conda/feedstock_root/build_artifacts/tornado_1695373450800/work
tqdm @ file:///home/conda/feedstock_root/build_artifacts/tqdm_1691671248568/work
traitlets @ file:///home/conda/feedstock_root/build_artifacts/traitlets_1696377679271/work
trio==0.28.0
trio-websocket==0.11.1
truststore @ file:///home/conda/feedstock_root/build_artifacts/truststore_1694154605758/work
types-python-dateutil @ file:///home/conda/feedstock_root/build_artifacts/types-python-dateutil_1689882883784/work
types-requests==2.32.0.20241016
typing-inspect==0.9.0
typing-utils @ file:///home/conda/feedstock_root/build_artifacts/typing_utils_1622899189314/work
typing_extensions==4.12.2
tzdata @ file:///home/conda/feedstock_root/build_artifacts/python-tzdata_1680081134351/work
uri-template @ file:///home/conda/feedstock_root/build_artifacts/uri-template_1688655812972/work/dist
uritemplate==4.1.1
urllib3 @ file:///home/conda/feedstock_root/build_artifacts/urllib3_1697720414277/work
wcwidth @ file:///home/conda/feedstock_root/build_artifacts/wcwidth_1696255154857/work
webcolors @ file:///home/conda/feedstock_root/build_artifacts/webcolors_1679900785843/work
webencodings @ file:///home/conda/feedstock_root/build_artifacts/webencodings_1694681268211/work
websocket-client==1.8.0
widgetsnbextension @ file:///home/conda/feedstock_root/build_artifacts/widgetsnbextension_1694598693908/work
wikipedia==1.4.0
wsproto==1.2.0
xlrd @ file:///home/conda/feedstock_root/build_artifacts/xlrd_1610224409810/work
XlsxWriter==3.2.2
xyzservices @ file:///home/conda/feedstock_root/build_artifacts/xyzservices_1696506440459/work
yarl==1.18.3
zict @ file:///home/conda/feedstock_root/build_artifacts/zict_1681770155528/work
zipp @ file:///home/conda/feedstock_root/build_artifacts/zipp_1695255097490/work
zstandard==0.23.0

@dosubot dosubot bot added the 🤖:bug Related to a bug, vulnerability, unexpected error with an existing feature label Feb 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖:bug Related to a bug, vulnerability, unexpected error with an existing feature
Projects
None yet
Development

No branches or pull requests

1 participant