construct-labs-crm-env 0.1.8__tar.gz → 0.1.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/PKG-INFO +15 -2
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/README.md +14 -1
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/pyproject.toml +1 -1
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/.gitignore +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/LICENSE +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/__init__.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/client.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/examples/__init__.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/examples/chat.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/models.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/protocol.py +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/py.typed +0 -0
- {construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: construct-labs-crm-env
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: CRM Agent Environment SDK by Construct Labs - Train RL agents to interact with CRM systems
|
|
5
5
|
Project-URL: Homepage, https://construct-labs.com
|
|
6
6
|
Author-email: Construct Labs GmbH <hello@construct-labs.com>
|
|
@@ -44,7 +44,20 @@ Contact hello@construct-labs.com for licensing inquiries.
|
|
|
44
44
|
## Installation
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
|
|
47
|
+
uv add construct-labs-crm-env
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Try the Example Chat Agent
|
|
51
|
+
|
|
52
|
+
Run the interactive chat agent without installing:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Google API key (https://ai.google.dev/gemini-api/docs/api-key)
|
|
56
|
+
export GOOGLE_API_KEY=<api_key>
|
|
57
|
+
# Construct Labs CRM API Key (provided by Construct Labs)
|
|
58
|
+
export CRM_AGENT_API_KEY=<api_key>
|
|
59
|
+
|
|
60
|
+
uvx --from construct-labs-crm-env[chat] chat-agent
|
|
48
61
|
```
|
|
49
62
|
|
|
50
63
|
## Quick Start
|
|
@@ -10,7 +10,20 @@ Contact hello@construct-labs.com for licensing inquiries.
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
|
|
13
|
+
uv add construct-labs-crm-env
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Try the Example Chat Agent
|
|
17
|
+
|
|
18
|
+
Run the interactive chat agent without installing:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Google API key (https://ai.google.dev/gemini-api/docs/api-key)
|
|
22
|
+
export GOOGLE_API_KEY=<api_key>
|
|
23
|
+
# Construct Labs CRM API Key (provided by Construct Labs)
|
|
24
|
+
export CRM_AGENT_API_KEY=<api_key>
|
|
25
|
+
|
|
26
|
+
uvx --from construct-labs-crm-env[chat] chat-agent
|
|
14
27
|
```
|
|
15
28
|
|
|
16
29
|
## Quick Start
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "construct-labs-crm-env"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.9"
|
|
8
8
|
description = "CRM Agent Environment SDK by Construct Labs - Train RL agents to interact with CRM systems"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "Proprietary" }
|
|
File without changes
|
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/__init__.py
RENAMED
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/models.py
RENAMED
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/protocol.py
RENAMED
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/py.typed
RENAMED
|
File without changes
|
{construct_labs_crm_env-0.1.8 → construct_labs_crm_env-0.1.9}/src/construct_labs_crm_env/tools.py
RENAMED
|
File without changes
|