Skip to content

Commit 8d0c2d5

Browse files
Release version 0.1.16
### Added - Changes in containers/llm-orchestrator/api.py - Changes in pyproject.toml - Changes in setup.py
1 parent 61ac9d5 commit 8d0c2d5

4 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.16] - 2025-05-13
6+
7+
### Added
8+
- Changes in containers/llm-orchestrator/api.py
9+
- Changes in pyproject.toml
10+
- Changes in setup.py
11+
512
## [0.1.15] - 2025-05-13
613

714
### Added

containers/llm-orchestrator/api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
from flask import Flask, request, jsonify
55
import requests
66

7+
app = Flask(__name__)
8+
79
# --- Lazy loading przykładowego modelu transformers ---
810
from transformers import AutoModelForCausalLM, AutoTokenizer
911

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "coboarding"
7-
version = "0.1.16"
7+
version = "0.1.17"
88
description = "Automated Development Environment"
99
authors = [{ name = "Tom Sapletta" }]
1010
requires-python = ">=3.8"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="coboarding",
5-
version="0.1.16",
5+
version="0.1.17",
66
description="Automated Development Environment",
77
packages=find_packages(),
88
python_requires=">=3.8",

0 commit comments

Comments
 (0)