Spaces:
Paused
Paused
File size: 391 Bytes
a7277a1 aa26ddb a7277a1 aa26ddb a7277a1 aa26ddb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # This project is managed with uv.
# Add a dependency with: uv add <package>
# Synchronize the environment with: uv sync
[project]
name = "interview-workspace"
version = "0.1.0"
description = "Python environment for the coding interview workspace"
requires-python = ">=3.12,<3.13"
dependencies = [
"anthropic",
"fastapi",
"openai",
"uvicorn[standard]",
]
[tool.uv]
package = false
|