# Create a Project

To create a project within a workspace we can use `create_project()` . In the case below, we want to create an object detection model that will detect flowers.

```python
import roboflow

rf = roboflow.Roboflow(api_key="MY_API_KEY")

project = rf.workspace().create_project(
    project_name="Flower detector",
    project_type="object-detection", # Or "classification", "instance-segmentation", "semantic-segmentation"
    project_license="MIT", # "private" for private projects, only available for paid customers 
    annotation="flowers" # If you plan to annotate lillies, sunflowers, etc.
)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.roboflow.com/developer/python-sdk/create-a-project.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
