Environment and dataset helpers for Freesolo-generated repos.
Project description
freesolo
freesolo is the published Python SDK surface for generated repos:
environments and datasets used for evaluation and task definition.
It is intentionally narrow:
freesolo.environmentsfreesolo.datasets
Everything else (evaluation, tracing, and internal helpers) is kept in the repository for internal workflows but is not part of the public SDK contract.
Install
pip install freesolo
From source:
cd freesolo-sdk
export PYTHONPATH="$PWD/pypi"
Dataset Contract
Dataset records use input and optional output.
{"id": "example-1", "input": "Say yes.", "output": "yes"}
The SDK does not accept aliases such as prompt, query, task,
ground_truth, expected_output, or completion.
Environment Contract
Environments are Python modules that expose load_environment() and return an
EnvironmentSingleTurn or EnvironmentMultiTurn instance. Environment code
uses TaskExample.input and TaskExample.output when building prompts and
scoring responses.
The SDK does not handle remote artifact publishing or resolution.
Example
from freesolo.datasets import load_dataset
from freesolo.environments import load_environment
dataset = load_dataset("support.jsonl")
environment = load_environment("freesolo/environment.py:load_environment")
print(len(dataset.examples))
print(type(environment).__name__)
API Guidance
Use freesolo.datasets for task examples and freesolo.environments for environment
loading/scoring interfaces.
- No command-line help surface is published as part of the SDK contract.
- Hidden modules remain available in source history for internal tooling only.
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 freesolo-0.2.52.tar.gz.
File metadata
- Download URL: freesolo-0.2.52.tar.gz
- Upload date:
- Size: 351.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90be0102ae16b8f86c3a314e599c48b1ea3af867877265b0ae99e1a90f16b9ac
|
|
| MD5 |
2ee9761eebee7be784655364413f5bcc
|
|
| BLAKE2b-256 |
ef9b1872807de7721e7dfc5ff81c4ead69765689cbc88bc829fcdcffae9d6636
|
File details
Details for the file freesolo-0.2.52-py3-none-any.whl.
File metadata
- Download URL: freesolo-0.2.52-py3-none-any.whl
- Upload date:
- Size: 63.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69480413ad8f76965a8b53c821884364286f573701f98df5f45e327f75a125e4
|
|
| MD5 |
20712fd0e510a48ba9f4f33cb8d51753
|
|
| BLAKE2b-256 |
c6a1fe1a03f08f4a4301df0c98246e6c8db452dd3e2df9ace1dc391889335780
|