Create a project
To create a project, follow these steps:- From Projects, select Create or import a project.
- Configure the following fields:
- W&B project: Select Create new to create a W&B project in the selected entity, or Import existing to connect a W&B project you already have. Importing doesn’t change the existing project’s data. A W&B project can back only one Model Distillation project per entity.
- Proxy model name: The stable
modelvalue your application sends to the proxy. Studio suggests a name derived from the W&B project name. Use lowercase letters, digits, and hyphens, up to 64 characters. The proxy model name can differ from the W&B project name. - Initial model: The model that serves version 1 while you collect traces and train alternatives.
- Select Create project.
API: Create a project (PUT /tasks/{alias})
API: Create a project (PUT /tasks/{alias})
The management API calls a project a task. The proxy model name is the For the complete schema, see Create a Model Distillation project.
alias path segment. Set project to the W&B project name and project_mode to create or import. Supply at least one routing target; creation fails when targets is missing or empty.Connect the application
After you create the project, point your application at the proxy, which routes its traffic through the project and records it as traces. Keep the normal OpenAI client and change two values:Verify useful traces
Before you collect a large dataset, confirm the following:- Successful calls appear in the project’s request chart.
- Traffic share matches routing weights.
- A stable
wandb.thread_idgroups each conversation. - Tool definitions, response formats, and multi-turn messages appear in the recorded request.
- Failed provider calls are visible for debugging but excluded from training data.