franklinselva / world-creator

LLM-based CLI utility for simulation worlds creation.

Home Page:https://ciare.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ciare World Creator

GitHub open issues GitHub open pull requests Hex.pm

Ciare World Creator is a CLI tool that reimagines the creation of simulation worlds for robotics. We have a vision that in the future you will not be obliged to painstakingly craft detailed SDF files. With Ciare, you will be able to effortlessly generate dynamic and realistic simulation environments by simply providing input text. Whether you're testing robot navigation or experimenting with new solutions, Ciare intelligently spawns models, freeing you from the complexities of precise object placement. By harnessing the power of Language Models (LLMs), Ciare empowers developers to rapidly prototype and explore their ideas, simplifying the simulation process and unlocking a world of possibilities for innovation.

Imagine a scenario where you want to test the navigation capabilities of a robot. With Ciare World Creator, you no longer have to spend hours meticulously positioning every object in the simulation. Instead, you simply provide input text to the Ciare pipeline, and it takes care of the rest. Ciare intelligently spawns models in a reasonable manner, allowing you to focus on testing your solution in a simulated environment that closely resembles real-world scenarios.

Features

Models

Currently it uses gpt-3.5-16k by default, but if you have access to gpt-4, you will be prompted with a selection. Note that gpt-4 performs much better, but not everyone has the invitation from OpenAI to use it.

Current limitations

Currently it's Proof Of Concept solution. There will be a lot of future development. Right now it really does often hallucinate and it's spatial notion is not that great, but sometimes it generates something cool.

Also complex models(like robots) currently is impossible to include. Work will be done on that in the future. Also complex textures of the models are not properly loading too.

Integration with other simulators

Generate simulation worlds on the fly with LLMs.

Supports selected simulators, with plans to expand support to all major simulators.

Simulator Supported
Gazebo Static Badge
Nvidia Isaac Sim Static Badge
Unity Static Badge

Model Database

In the future we want to collect a vast model database from which you can freely choose any model to incorporate into your simulations. It aims to become the largest robotics model database available.

Currently, we use https://app.gazebosim.org/dashboard as database of the models.

Examples

Prompt Generated world
Healthcare worker and couple of medical items around them alt text
Pile of fruits and other food in empty world alt text
Surgical room alt text
Warehouse shelves alt text
Usual persons living room alt text

Getting Started

Installation

From source using poetry

git clone https://github.com/ciare-robotics/world-creator.git
cd world-creator
poetry install

Using pip

pip3 install ciare-world-creator

Token configuration

Once you installed ciare, you need to save your OpenAI token by launching ciare_world_creator create command first time.

OpenAI API usage

I estimate that creating single world is only a matter of a few cents.

How to use

Ciare has couple of commands

Usage: ciare ciare_world_creator [OPTIONS] COMMAND [ARGS]...

  World creator by Ciare

Options:
  --help  Show this message and exit.

Commands:
  create            Create new simulation world
  list              Lists all worlds created by you
  purge             Delete database and all of the worlds you've created
  fix               Sometimes, world downloaded can be malformed, so we will
                   take all objects from that world and respawn them in empty
                     world

Create simulation world

You can crate simulation worlds by using command ciare_world_creator create. You will need to prompt any query that will describe your simulation world as precise as possible. Model hallucinate pretty often.

sim@sim:world-creator$ Β±|main βœ—|β†’ ciare_world_creator create
? Enter query for world generation(E.g Two cars and person next to it) Multiple cars spawned 5 meters from each other in empty world. One bicycle besides them

Using embedded DuckDB with persistence: data will be stored in: /var/tmp/ciare/chromadb

Generating world... 🌎
World is Test, downloading it
File downloaded successfully.

Spawning models in the world... πŸ«–

Placing models in the world... πŸ“

Finished! Output available at /var/tmp/ciare/worlds/world_multiple_cars_spawned_5_meters_from_each_other_in_empty_world_one_bicycle_besides_them.sdf πŸ¦„

List created worlds

You can run ciare_world_creator list to view already created worlds. We save every prompt from create command, so later you won't query LLM again.

Purge database

With ciare_world_creator purge you can delete created worlds from local storage and start from scratch.

Fix malformed world

We take database of worlds from https://app.gazebosim.org/, but sometimes someone puts a world there that doesn't work at all and breaks because of the missing tag or any other error...

To overcome this, you can fix already created world by running ciare_world_creator fix command and later typing the name of your world. All models will be spawned in the empty world after that.

Feedback and contributions

We welcome feedback and contributions from the community to make Ciare World Creator even better. If you encounter any issues, have ideas for improvements, or would like to contribute to the project, please visit the GitHub repository and open an issue or submit a pull request.

Let's create stunning simulation worlds together!

About

LLM-based CLI utility for simulation worlds creation.

https://ciare.dev

License:Other


Languages

Language:Python 100.0%