https://github.com/dockersamples/labspace-ai-fundamentals
https://github.com/dockersamples/labspace-ai-fundamentals
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dockersamples/labspace-ai-fundamentals
- Owner: dockersamples
- License: apache-2.0
- Created: 2026-03-12T20:19:17.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-12T21:24:50.000Z (3 months ago)
- Last Synced: 2026-03-13T02:15:16.155Z (3 months ago)
- Language: JavaScript
- Size: 33.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-labspaces - AI Fundamentals
README
# Labspace - AI Fundamentals for Developers
Modern software applications increasingly include AI capabilities — answering questions, summarizing content, automating workflows, and more. But building AI apps that are reliable and useful requires understanding the underlying concepts.
In this Labspace, you'll learn the four core pillars of AI application development through hands-on exercises in a live environment.
## Learning objectives
By the end of this Labspace, you will have learned the following:
- Understand the Chat Completions API and how to structure messages for a model
- Use prompt engineering techniques including system prompts, few-shot examples, and structured output
- Implement tool calling and the agentic loop in code
- Build a RAG pipeline that grounds model responses in your own data
## Launch the Labspace
To launch the Labspace, run the following command:
```bash
docker compose -f oci://dockersamples/labspace-ai-fundamentals up -d
```
And then open your browser to http://localhost:3030.
### Using the Docker Desktop extension
If you have the Labspace extension installed (`docker extension install dockersamples/labspace-extension` if not), you can also [click this link](https://open.docker.com/dashboard/extension-tab?extensionId=dockersamples/labspace-extension&location=dockersamples/labspace-ai-fundamentals&title=AI%20Fundamentals%20for%20Developers) to launch the Labspace.
## Contributing
If you find something wrong or something that needs to be updated, feel free to submit a PR. If you want to make a larger change, feel free to fork the repo into your own repository.
**Important note:** If you fork it, you will need to update the GHA workflow to point to your own Hub repo.
1. Clone this repo
2. Start the Labspace in content development mode:
```bash
# On Mac/Linux
CONTENT_PATH=$PWD docker compose up --watch
# On Windows with PowerShell
$Env:CONTENT_PATH = (Get-Location).Path; docker compose up --watch
```
3. Open the Labspace at http://localhost:3030.
4. Make the necessary changes and validate they appear as you expect in the Labspace
Be sure to check out the [docs](https://github.com/dockersamples/labspace-infra/tree/main/docs) for additional information and guidelines.