Metadata-Version: 2.1
Name: ally-ai-langsmith
Version: 0.0.1
Summary: langsmith package for ally
Author-email: Tugbay Atilla <tugbayatilla@gmail.com>
Project-URL: Homepage, https://github.com/users/tugbayatilla/projects/3/
Project-URL: Issues, https://github.com/users/tugbayatilla/projects/3/views/8
Project-URL: Repository, https://github.com/tugbayatilla/ally_ai.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ally-ai-core >=0.2.0
Requires-Dist: langsmith

# Ally AI

## How to use

### Config File

```yaml
langsmith:
  langchain_tracing_v2: 'true'
  langchain_endpoint: "https://api.smith.langchain.com"
  langchain_api_key: "<your-api-key>"
  langchain_project: "future-press-release"
```

### Update api key in k8s

with using double underscore '__'
```yaml
env:
  - name: langsmith__langchain_api_key
    valueFrom:
      secretKeyRef:
        name: ...
        key: ...
```

### Create an instance

```python
from ally_ai_langsmith import Langsmith

Langsmith()
```


