A client for interacting with endpoints of the FutureHouse crow service.
Project description
crow-client
A client for interacting with endpoints of the FutureHouse crow service.
Installation
uv pip install crow-client
Usage
The CrowClient provides simple functions to deploy and monitor your crow.
In the case of environments the deployment looks like this
from pathlib import Path
from crow_client import CrowClient
from crow_client.models import CrowDeploymentConfig
client = CrowClient()
crow = CrowDeploymentConfig(
path=Path("../envs/dummy_env"),
environment="dummy_env.env.DummyEnv",
requires_aviary_internal=False,
environment_variables={"SAMPLE_ENV_VAR": "sample_val"},
agent="ldp.agent.SimpleAgent",
)
client.create_crow(crow)
# checks the status
client.get_build_status()
For functional environments we don't need to pass the file path and can pass the environment builder instead
from aviary.core import fenv
import numpy as np
def function_to_use_here(inpste: str):
a = np.array(np.asmatrix("1 2; 3 4"))
return inpste
@fenv.start()
def my_env(topic: str):
"""
Here is the doc string describing the task.
"""
a = np.array(np.asmatrix("1 2; 3 4"))
return f"Write a sad story about {topic}", {"chosen_topic": topic}
@my_env.tool()
def print_story(story: str, state) -> None:
"""Print the story and complete the task"""
print(story)
print(function_to_use_here(story))
state.reward = 1
state.done = True
from crow_client import CrowClient
from crow_client.models import CrowDeploymentConfig, Stage
from crow_client.clients.rest_client import generate_requirements
client = CrowClient(stage=Stage.LOCAL)
crow = CrowDeploymentConfig(
functional_environment=my_env,
environment="my_env",
requires_aviary_internal=False,
environment_variables={"SAMPLE_ENV_VAR": "sample_val"},
agent="ldp.agent.SimpleAgent",
requirements=generate_requirements(my_env, globals()),
)
client.create_crow(crow)
This client also provides functions that let you send tasks to an existing crow:
from crow_client import CrowJob
client = CrowClient()
job_data = {"name": "your-job-name", "query": "your task"}
client.create_job(job_data)
# checks the status
client.get_job()
The CrowJobClient provides an interface for managing environment states and agent interactions in the FutureHouse crow service.
from crow_client import CrowJobClient
from crow_client.models.app import Stage
client = CrowJobClient(
environment="your_environment_name",
agent="your_agent_id",
auth_token="your_auth_token",
base_uri=Stage.DEV,
trajectory_id=None,
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file crow_client-0.3.14.tar.gz.
File metadata
- Download URL: crow_client-0.3.14.tar.gz
- Upload date:
- Size: 131.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d949acfd57749a579ef76325920e529cd8541dbe55c88d7b4ee1d4162dc2a70b
|
|
| MD5 |
cbb895caeb9c7fc3fd860b016855b902
|
|
| BLAKE2b-256 |
1b7055d2b76cca46bf7d3c27c4df822806e82b4f9ff3e38611d5ad0b84ac3d76
|
File details
Details for the file crow_client-0.3.14-py3-none-any.whl.
File metadata
- Download URL: crow_client-0.3.14-py3-none-any.whl
- Upload date:
- Size: 21.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ac65740207287f012e820f0592615b7e44b6b023386a8c893fd40deaec5a4b7
|
|
| MD5 |
a3390b2314130ac3c98b017cca7f5fdd
|
|
| BLAKE2b-256 |
f8e9aa316a7b02817e6a2b841ae763034a40cf7180cb51d226bb8ad0e2b41eb2
|