# WandbRunArgs

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/callbacks/tracers/wandb/WandbRunArgs)

Arguments for the WandbTracer.

## Signature

```python
WandbRunArgs()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    job_type: Optional[str],
    dir: Optional[StrPath],
    config: Union[Dict, str, None],
    project: Optional[str],
    entity: Optional[str],
    reinit: Optional[bool],
    tags: Optional[Sequence],
    group: Optional[str],
    name: Optional[str],
    notes: Optional[str],
    magic: Optional[Union[dict, str, bool]],
    config_exclude_keys: Optional[List[str]],
    config_include_keys: Optional[List[str]],
    anonymous: Optional[str],
    mode: Optional[str],
    allow_val_change: Optional[bool],
    resume: Optional[Union[bool, str]],
    force: Optional[bool],
    tensorboard: Optional[bool],
    sync_tensorboard: Optional[bool],
    monitor_gym: Optional[bool],
    save_code: Optional[bool],
    id: Optional[str],
    settings: Union[WBSettings, Dict[str, Any], None],
)
```

| Name | Type |
|------|------|
| `job_type` | `Optional[str]` |
| `dir` | `Optional[StrPath]` |
| `config` | `Union[Dict, str, None]` |
| `project` | `Optional[str]` |
| `entity` | `Optional[str]` |
| `reinit` | `Optional[bool]` |
| `tags` | `Optional[Sequence]` |
| `group` | `Optional[str]` |
| `name` | `Optional[str]` |
| `notes` | `Optional[str]` |
| `magic` | `Optional[Union[dict, str, bool]]` |
| `config_exclude_keys` | `Optional[List[str]]` |
| `config_include_keys` | `Optional[List[str]]` |
| `anonymous` | `Optional[str]` |
| `mode` | `Optional[str]` |
| `allow_val_change` | `Optional[bool]` |
| `resume` | `Optional[Union[bool, str]]` |
| `force` | `Optional[bool]` |
| `tensorboard` | `Optional[bool]` |
| `sync_tensorboard` | `Optional[bool]` |
| `monitor_gym` | `Optional[bool]` |
| `save_code` | `Optional[bool]` |
| `id` | `Optional[str]` |
| `settings` | `Union[WBSettings, Dict[str, Any], None]` |


## Properties

- `job_type`
- `dir`
- `config`
- `project`
- `entity`
- `reinit`
- `tags`
- `group`
- `name`
- `notes`
- `magic`
- `config_exclude_keys`
- `config_include_keys`
- `anonymous`
- `mode`
- `allow_val_change`
- `resume`
- `force`
- `tensorboard`
- `sync_tensorboard`
- `monitor_gym`
- `save_code`
- `id`
- `settings`

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/d5ea8358933260ad48dd31f7f8076555c7b4885a/libs/community/langchain_community/callbacks/tracers/wandb.py#L250)