Thiago Teodoro Pereira Silva

Results 12 issues of Thiago Teodoro Pereira Silva

Hi. I would like to know how are the words organised in this file. I have noticed that in the first column are the non macronized words and in the...

The following code results in a error: ```python from symengine import symbols, Function x = symbols('x') f = Function('f') print(f(x).name) ``` ![image](https://user-images.githubusercontent.com/8174647/79711357-fb8cb380-829d-11ea-8590-96e77296d00c.png) Replacing symengine with sympy gives the desired result:...

The current implementation for function calling with Anthropic models only seems to include the available tools in the system prompt. It does not add `` to the list `stop_sequences` and...

bedrock

### Feature request Add `ChatBedrockConverse` from `langchain-aws` to the playground, with support for doing tool calling. ### Motivation Currently the playground doesn't allow the use of the new `ChatBedrockConverse` class...

### Feature request A way to configure the `tool_choice` parameter for Anthropic models in the playground. ### Motivation The current configuration options for Anthropic models don't allow us to set...

### Issue with current documentation: The current documentation on [Log custom LLM traces](https://docs.smith.langchain.com/how_to_guides/tracing/log_llm_trace) doesn't tell the format expected when the model makes a **tool call** or when the client side...

### Checked other resources - [X] I added a very descriptive title to this issue. - [X] I searched the [LangGraph](https://langchain-ai.github.io/langgraph/)/LangChain documentation with the integrated search. - [X] I used...

The following code: ```python import boto3 from langchain_aws import ChatBedrockConverse boto3.setup_default_session(profile_name="genai-dev", region_name="us-east-1") llm = ChatBedrockConverse(model="anthropic.claude-3-haiku-20240307-v1:0") ``` raises the following error: ```python ValidationError: 1 validation error for ChatBedrockConverse __root__ Did not...

bedrock
investigate

The following code ```python from langchain_aws import ChatBedrockConverse import boto3 boto3.setup_default_session(profile_name="genai-dev", region_name="us-east-1") bedrock = boto3.client('bedrock-runtime') def add_tool(a: float, b: float) -> float: "Add tool" return a + b llm =...