# unicode_customer

> **Function** in `langchain_tests`

📖 [View in docs](https://reference.langchain.com/python/langchain-tests/integration_tests/chat_models/unicode_customer)

Tool for creating a customer with Unicode name.

## Signature

```python
unicode_customer(
    customer_name: str,
    description: str,
) -> str
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `customer_name` | `str` | Yes | The customer's name in their native language. |
| `description` | `str` | Yes | Description of the customer. |

## Returns

`str`

A confirmation message about the customer creation.

---

[View source on GitHub](https://github.com/langchain-ai/langchain/blob/8d09a6c8b736b66791fe73997d9565044c2f3bf2/libs/standard-tests/langchain_tests/integration_tests/chat_models.py#L158)