No project description provided
Project description
Freeplay Python SDK
The official Python SDK for Freeplay
The ops platform for enterprise AI engineering teams
Docs • Quick Start • SDK Setup • API Reference • Changelog • Contributing
Overview
Freeplay is the only platform your team needs to manage the end-to-end AI application development lifecycle. It provides an integrated workflow for improving your AI agents and other generative AI products. Engineers, data scientists, product managers, designers, and subject matter experts can all review production logs, curate datasets, experiment with changes, create and run evaluations, and deploy updates.
Use this SDK to integrate with Freeplay's core capabilities:
- Observability
- Sessions — group related interactions together, e.g. for multi-turn chat or complex agent interactions
- Traces — track multi-step agent workflows within sessions
- Completions — record LLM interactions for observability and debugging
- Customer Feedback — append user feedback and events to traces and completions
- Prompts — version, format, and fetch prompt templates across environments
- Test Runs — execute evaluation runs against prompts and datasets
Requirements
- Python 3.8 or higher
- A Freeplay account + API key
Installation
pip install freeplay
Quick Start
import os
from freeplay import Freeplay, RecordPayload
from openai import OpenAI
fp_client = Freeplay(
freeplay_api_key=os.environ["FREEPLAY_API_KEY"],
)
openai_client = OpenAI()
project_id = os.environ["FREEPLAY_PROJECT_ID"]
# Fetch a prompt from Freeplay
formatted_prompt = fp_client.prompts.get_formatted(
project_id=project_id,
template_name="my-prompt",
environment="prod",
variables={"user_input": "Hello, world!"},
)
# Call your LLM provider with formatted_prompt.llm_prompt
response = openai_client.chat.completions.create(
model=formatted_prompt.prompt_info.model,
messages=formatted_prompt.llm_prompt,
)
# Record the interaction for observability
fp_client.recordings.create(
RecordPayload(
project_id=project_id,
all_messages=formatted_prompt.all_messages({
"role": "assistant",
"content": response.choices[0].message.content,
}),
)
)
See the SDK Setup guide for complete examples.
Configuration
Environment variables
export FREEPLAY_API_KEY="fp_..."
export FREEPLAY_PROJECT_ID="xy..."
# Optional: override if using a custom domain / private deployment
export FREEPLAY_API_BASE="https://app.freeplay.ai/api"
API base URL
Default: https://app.freeplay.ai/api
Custom domain/private deployment: https://<your-domain>/api
Versioning
This SDK follows Semantic Versioning (SemVer): MAJOR.MINOR.PATCH.
- PATCH: bug fixes
- MINOR: backward-compatible features
- MAJOR: breaking changes
Before upgrading major versions, review the changelog.
Support
- Docs: https://docs.freeplay.ai
- Issues: https://github.com/freeplayai/freeplay-python/issues
- Security: security@freeplay.ai
Contributing
See CONTRIBUTING.md.
License
Apache-2.0 — see LICENSE.
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 freeplay-0.5.6.tar.gz.
File metadata
- Download URL: freeplay-0.5.6.tar.gz
- Upload date:
- Size: 885.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","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 |
76318b9b998fc41d8c57dbea909e1208c927eac03979d0a91275dd26926b7f4b
|
|
| MD5 |
913ebc0c298ef31d35083ba48f3e578d
|
|
| BLAKE2b-256 |
f017b4b5fcf9146aee87fa88dea1564c3a4f357813a1e4a5e12b4e517377a4f5
|
File details
Details for the file freeplay-0.5.6-py3-none-any.whl.
File metadata
- Download URL: freeplay-0.5.6-py3-none-any.whl
- Upload date:
- Size: 37.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","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 |
f05998330e06db4d221d0e32d3baadf1775eb247cb173d03ea0f017dc3b3ce64
|
|
| MD5 |
a2c2febee128ea97fe00faba8b0c89be
|
|
| BLAKE2b-256 |
80d60d69a9fd263401bde67e58ef95dd1dce6d893ea7ff4b7177b27372d23db1
|